Age | Commit message (Collapse) | Author | |
---|---|---|---|
1998-08-07 | Shrink kernels and make work for ramdisks better. (so they fit on floppy) | Dale S. Rahn | |
1998-08-06 | Null mounts must be from directories | Constantine Sapuntzakis | |
1998-08-06 | Fix the typos that prevented umap from working. They, of course, lead | Constantine Sapuntzakis | |
to the obvious question: don't you run this stuff before you check it in? Sadly, the answer was no in this case. But, I'm trying to learn. Slowly, painfully.... | |||
1998-08-06 | Don't pass vclean related stuff to the lower vnode. It makes it very unhappy. | Constantine Sapuntzakis | |
1998-08-06 | Rename vop_revoke, vn_bwrite, vop_noislocked, vop_nolock, vop_nounlock | Constantine Sapuntzakis | |
to be vop_generic_revoke, vop_generic_bwrite, vop_generic_islocked, vop_generic_lock and vop_generic_unlock. Create vop_generic_abortop and propogate change to all file systems. Fix PR/371. Get rid of locking in NULLFS (should be mostly unnecessary now except for forced unmounts). | |||
1998-08-06 | sync | Michael Shalayeff | |
1998-08-06 | add TI1220 PCI-CardBus Bridge; somebody deal w/ that NM3160 thing from intel | Michael Shalayeff | |
1998-08-06 | Some small fixes for non ofw systems | Per Fogelstrom | |
1998-08-06 | Use single line geometry printing. Looks just like sd, now. | Jason Downs | |
1998-08-05 | fix ifc_len == 0 hack for variable size structures. | Todd C. Miller | |
1998-08-05 | add missing check for msg.msg_iovlen <= 0 | Todd C. Miller | |
1998-08-05 | return EMSGSIZE, not EINVAL is msg_iovlen <= 0 as per XPG 4.2 | Todd C. Miller | |
When comparing against UIO_SMALLIOV/UIO_MAXIOV check for >, not >= | |||
1998-08-05 | Add IOV_MAX from XPG 4.2. This supercedes UIO_MAXIOV so mark it as such. | Todd C. Miller | |
1998-08-05 | delete bogus casts of msg_iovlen to u_int since msg_iovlen is already a u_int | Todd C. Miller | |
1998-08-04 | fix resid wrt debugging printf | Todd C. Miller | |
1998-08-04 | fix type of resid in debugging printf | Todd C. Miller | |
1998-08-04 | fix type of resid in printf | Todd C. Miller | |
1998-08-04 | make resid size_t | Todd C. Miller | |
1998-08-04 | make b_resid size_t | Todd C. Miller | |
1998-08-04 | don't rely on b_resid being signed | Todd C. Miller | |
1998-08-04 | Add hack to SIOCGIFCONF where if ifc_len is 0, fill it in with the size ↵ | Todd C. Miller | |
needed and return; Linux does this too. Suggested by cmetz@inner.net | |||
1998-08-04 | Change K6 3D to K6-2 (ewww) and set the Intel 686 model 5 as a P2. | Jason Downs | |
1998-08-04 | Fix by Federico G. Schwindt <fgsch@olimpo.com.br> for YM ISA PNP driver | Constantine Sapuntzakis | |
1998-08-02 | cleanup ipsec error handling | Niels Provos | |
1998-08-02 | #define TUNMRU as 16384 and allow incoming packets | brian | |
of up to this size rather than restricting them based on our MTU. | |||
1998-08-01 | more careful error handling, some simplification and beautification. | Niels Provos | |
1998-07-31 | Match generic SVEC pcmcia NE2000 clone that identifies itself as 'Ethernet ↵ | Todd C. Miller | |
Adapter 2.0'. You just don't get any more generic than that do you? These boards are dirt cheap. | |||
1998-07-30 | LIF file system | Michael Shalayeff | |
1998-07-30 | lif file device for tape, net, etc boot | Michael Shalayeff | |
1998-07-30 | Correct comment about descriptor swap bit. | Per Fogelstrom | |
1998-07-30 | fixing a stupid bug I introduced when trying to improve the encryption | Niels Provos | |
performance by avoiding unnecessary copies. There was a problem when two subsequent mbufs were != 0 mod blocksize and the next < blocksize, so we lost the rest of the last mbuf as IV. | |||
1998-07-30 | Forgot this one with the previous batch of commits; use ip4_input() | Angelos D. Keromytis | |
instead of ipip_input() whenever possible, it seems more stable. | |||
1998-07-29 | Proper handling of IP in IP and checksumming. | Angelos D. Keromytis | |
1998-07-29 | Don't do checksumming unless we're doing IP-in-IP. | Angelos D. Keromytis | |
1998-07-29 | real user .text base | Michael Shalayeff | |
1998-07-29 | add strchr proto | Michael Shalayeff | |
1998-07-29 | some debug prints; one lseek fix | Michael Shalayeff | |
1998-07-29 | if() debug prints; correct handling sym-less files | Michael Shalayeff | |
1998-07-28 | vn_rdwr proto fallout I missed earlier | Todd C. Miller | |
1998-07-28 | writev takes an int as param #3; theo | Todd C. Miller | |
1998-07-28 | For read, write, send, sendto, recv, recvfrom return EINVAL is size arg > ↵ | Todd C. Miller | |
SSIZE_MAX. For readv, writev, sendmsg, recvmsg return EINVAL if sum of the over iov_len values overflows an ssize_t. Based on what XPG 4.2 says (though XPG is not entirely consistent here). Basically since the return value is ssize_t allowing size > SSIZE_MAX is bad since people who (incorrectly mind you) check the return value for < 0 instead of == -1 will have bad things happen to them. | |||
1998-07-28 | Fix indentation problems. | Constantine Sapuntzakis | |
Remove annoying printf. | |||
1998-07-28 | Disable ISA PNP devices before ISA scan | Constantine Sapuntzakis | |
1998-07-28 | Don't assume uio_resid can go negative when detecting oflow | Todd C. Miller | |
1998-07-28 | Return EINVAL when msg_iovlen or iovcnt <= 0; Make uio_resid unsigned ↵ | Todd C. Miller | |
(size_t) and don't return EINVAL if it is < 0 in sys_{read,write}. Remove check for uio_resid < 0 uiomove() now that uio_resid is unsigned and brack remaining panics with #ifdef DIAGNOSTIC. vn_rdwr() must now take a size_t * as its 9th argument so change that and clean up uses of vn_rdwr(). Fixes 549 + more | |||
1998-07-27 | oops, remove bugus trailing spaces | Marco S Hyman | |
1998-07-27 | Fix BATT_REMAINING macro so it returns values in minutes (as documented) | Marco S Hyman | |
not seconds | |||
1998-07-27 | make LIF definitions machine-wide | Michael Shalayeff | |
fix bug w/ blank LIF file names (\t crept into "" string), use memset don't prepend names w/ SYS_ | |||
1998-07-27 | machine-wide LIF definitions | Michael Shalayeff | |
1998-07-26 | clean up some things left from my debugging activity. | Matthieu Herrb | |
In particular remove the OVERRIDE_ directives specific to my board. |