Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-12 | fortunes: support for non-blocking i/o | stanley lieber | |
2013-04-12 | merge | ppatience0 | |
2013-04-12 | jpg(1): update bmp and yuv usage | ppatience0 | |
2013-04-12 | pci: Add Intel C216 chipset PCI support (from sources) | cinap_lenrek | |
2013-04-12 | usbehci: align page td buffer for >16K transfers, fix isohsinit() | cinap_lenrek | |
from ehci spec: The buffer pointer list in the qTD is long enough to support a maximum transfer size of 20K bytes. This case occurs when all five buffer pointers are used and the first offset is zero. A qTD handles a 16Kbyte buffer with any starting buffer alignment. | |||
2013-04-11 | merge | cinap_lenrek | |
2013-04-11 | ndb/dns: dont override req->aborttime in udpquery() | cinap_lenrek | |
overriding aborttime in udpquery() makes no sense. it causes recursive queries to extend the timeout infinitely. nobody but the issuer of the request should modify aborttime. | |||
2013-04-11 | libauth: auth_chuid empty (from sources) | cinap_lenrek | |
instead of an "i/o count too small", detect a missing capability (empty, null string) before the write, and diagnose it as such. | |||
2013-04-10 | 9nfs: apply patch/nfswarnandflags (from sources, thanks nemo) | cinap_lenrek | |
Remove a warning in 9nfs and make it use the std. CFLAGS (we detected the warning using -W). | |||
2013-04-10 | postscript: remove private copy of utf8 implementation (from sources) | cinap_lenrek | |
2013-04-10 | etheriwl: add pci id for Centrino Wireless-N 100 (thanks fgudin9) | cinap_lenrek | |
2013-04-05 | ape: inet_ntop() print v4 mapped addresses in v6 as dotted quad | cinap_lenrek | |
2013-04-04 | sam(1): document -i flag | ppatience0 | |
2013-04-04 | sam, samterm: add -i flag to make tab insert spaces up to the next tabstop ↵ | ppatience0 | |
and backspace to delete spaces until the previous tabstop | |||
2013-04-03 | intel ethernet: default to 16 byte cache line size when not properly ↵ | cinap_lenrek | |
initialized and disable checksum offload for igbe (from sources) | |||
2013-04-03 | pci: add pci bridge id for Intel 6 Series/C200 (from sources) | cinap_lenrek | |
2013-04-03 | pushtls: remove unneccesary include <auth.h> (from sources) | cinap_lenrek | |
2013-04-02 | add import -z option to skip initial tree negotiation (from mycroftiv) | cinap_lenrek | |
2013-04-02 | ape: inet_pton() parse dotted address to IPv4 mapped addresses for AF_INET6 | cinap_lenrek | |
2013-04-02 | fix parseip() | cinap_lenrek | |
addresses like: "1:2:3:4:5:6:7:255.255.255.255" caused parseip to write beyond the ip buffer. | |||
2013-04-02 | ape: check *alen before copying in getpeername(), getsockname() and accept() | cinap_lenrek | |
*alen has to be initialized to the size of the buffer by the caller, and we are supposed to put the real size of the address in there, but not copy more than the original *alen value (truncate). | |||
2013-04-01 | ape: add inet_aton() | cinap_lenrek | |
2013-03-31 | python: update python build configuration to new ape capabilities like ↵ | cinap_lenrek | |
getaddrinfo(), ipv6 and fix EISCON typo in ape | |||
2013-03-31 | ape: initial IPv6 support, inet_pton()/inet_ntop(), getaddrinfo()/getnameinfo() | cinap_lenrek | |
2013-03-31 | ape: define FD_SETSIZE for select() | cinap_lenrek | |
2013-03-30 | merge | ppatience0 | |
2013-03-30 | ether82563: add untested devices from OpenBSD's em(4) Intel driver. also ↵ | ppatience0 | |
update some names according to OpenBSD's driver (previously added device, 0x10c0, is also from OpenBSD's driver). | |||
2013-03-29 | ape: fix potential double close in socket() and protect rock chain with spinlock | cinap_lenrek | |
2013-03-24 | ether82563: add 82562V-2 did | ppatience0 | |
2013-03-24 | fortunes: Now reboot twice[1]. | stanley lieber | |
2013-03-24 | wifi: cleanup | cinap_lenrek | |
cleanup wifiencrypt()/wifidecrypt() routines moving tkip and ccmp in separate routines so we dont use less stack space. | |||
2013-03-24 | wpa(8) document -1 and -2 options | cinap_lenrek | |
2013-03-23 | wpa: fix rsc for wpa2 | cinap_lenrek | |
in wpa2, the rsc field of the eapol message3 is the packet number for *group* messages that the ap will use as there is no separate group key message. in wpa1, we use it for the peerwise key. | |||
2013-03-23 | unrolling loops in aesCCMencrypt() and aesCCMdecrypt() | cinap_lenrek | |
do the xoring word wise for 16-byte block instead of doing it bytewise in a loop. | |||
2013-03-23 | wpa: remove debug print | cinap_lenrek | |
2013-03-23 | merge | cinap_lenrek | |
2013-03-23 | wpa2 support continued... | cinap_lenrek | |
2013-03-23 | add experimental wpa2/ccmp support | cinap_lenrek | |
2013-03-22 | fortunes: stockholm | khm | |
2013-03-17 | merge | cinap_lenrek | |
2013-03-17 | wpa: initial support for rsn | cinap_lenrek | |
2013-03-17 | aux/cpuid: xsaveopt | ftrvxmtrx | |
2013-03-16 | aux/cpuid: better looking arrays | ftrvxmtrx | |
2013-03-16 | aux/cpuid: fix wrong extfunc1 bits | ftrvxmtrx | |
2013-03-16 | sysexec: fix possible segment overlap with temporary stack | cinap_lenrek | |
the kernel uses fixed area (TSTKTOP, TSTKSIZ) of the address space to temporarily map the new stack segment for exec. for 386 and arm, this area was right below the stack segment which has the problem that the program can map arbitrary segments there (even readonly). alpha and ppc dont have this problem as they map the temporary exec stack *above* the user reachable stack segement and segattach prevents one from mapping anything above or overlaping the stack. lots of arch code assumes USTKTOP being the end of userspace address space and changing this to TSTKTOP would work, but results in lots of hard to test changes. instead, we'r going to map the temporary stack programmatically finding a hole in the address space where to map it. we also lift the size limitation for arguments and allow arguments to fill the whole new stack segement. the TSTKTOP and TSTKSIZ are not used anymore so they where removed. references: http://9fans.net/archive/2013/03/203 http://9fans.net/archive/2013/03/202 http://9fans.net/archive/2013/03/197 http://9fans.net/archive/2013/03/195 http://9fans.net/archive/2013/03/181 | |||
2013-03-14 | merge | cinap_lenrek | |
2013-03-14 | hjfs: fix the megashit | cinap_lenrek | |
aiju → what is this huge if(d != nil) {} megashit if getdent() fails in newentry() then return immidiately and dont override the error string. | |||
2013-03-12 | inst/mountcwfs, inst/mounthjfs: fix typos | ppatience0 | |
2013-03-12 | merge | cinap_lenrek | |
2013-03-12 | ether8169: add RTL8101/8102E macid | cinap_lenrek | |