summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-06rsa: add auth/rsa2asn1, check write error in auth/rsa2x509 and auth/rsa2pub, ↵cinap_lenrek
document in rsa(8)
2017-10-06libsec: export asn1encodedigest(), asn1encodeRSApub(), asn1toRSApub(), ↵cinap_lenrek
pkcs1padbuf() and pkcs1unpadbuf()
2017-10-05libsec: allow \r\n terminated lines in decodePEM()cinap_lenrek
2017-10-04check for fs= in netauditaiju
2017-10-04hgwebfs: simplify retry loop constructioncinap_lenrek
2017-10-04ndb/cs: icmp only supports version 4 addresses, icmpv6 only version 6 addressescinap_lenrek
2017-10-04libauthsrv: preserve readcons() error message from read() errorcinap_lenrek
2017-10-04hg: disable tag caching, allows accessing hg repo from dumpcinap_lenrek
2017-09-299boot: limit read size to 4K for efi simple file system protocolcinap_lenrek
copying files from the uefi shell works, reading plan9.ini works, loading the kernel by calling Read to read in the DATA section of the kernel *FAILS*. my guess is that uefi filesystem driver or nvme driver tries to allocate a temporary buffer and hasnt got the space. limiting the read size fixes it.
2017-09-27pc64: add ether82598 driver to configurationcinap_lenrek
2017-09-27ether82598: support for T540-T1, use physical addresses for isaconf portcinap_lenrek
reading mac doesnt work yet, requires ea= option in isaconf.
2017-09-27sdnvme: identify namespace list fails on intel ssd, just assume nsid=[1]cinap_lenrek
2017-09-27kernel: don't tokenize inplace in isaconfig() to make /dev/reboot workcinap_lenrek
2017-09-27kernel: get rid of 36 bit Paerange mask in mtrr (supporting machines with ↵cinap_lenrek
more than 64GB of memory)
2017-09-23upas/fs: fix putcache(), sub-part messages should never go into the lrucinap_lenrek
we accidentally added non-top messages (attatchments) to the lru, resulting in attachments to be freed. this is wrong.
2017-09-22xhci: do bounds checking in capability walking, check if controller vanished ↵cinap_lenrek
on init (thunderbolt unplug)
2017-09-22sshfs: use mtime for qid.vers, fix wstat without name change, fix wstat ↵cinap_lenrek
memory leak
2017-09-13upas/fs: replace fixed cache table with lru linked listcinap_lenrek
the cachetab just keeps track of recent messages that have not been called cachefree() on. under some conditions, the fixed table could overflow (all messages having refs > 0). with a linked list, overflow becomes non fatal and the algorithm is simpler to implement.
2017-09-11winwatch: show windows with empty labels (thanks jpm)cinap_lenrek
2017-09-10rename pcf kernel to pc, remove pcf, pccpuf, pccpu64 kernels, update ↵cinap_lenrek
documentation there isnt much of a point in keep maintaining separate kernel configurations for terminal and cpu kernels as the role can be switched with service=cpu boot parameter. to make stuff cosistent, we will just have one "pc" kernel and one "pc64" kernel configuration now.
2017-09-10audiohda: add pci id for nvidia GM204BurnZeZ
2017-09-10audiohda: add pci id for Intel 9 SeriesBurnZeZ
2017-09-10vmx(3): document changes to devvmx interfacecinap_lenrek
2017-09-10audiohda: add pci id for ICH10 (thanks echoline)cinap_lenrek
2017-09-02devvmx: call vmxshutdown from reboot() function manuallyaiju
2017-08-29sshfs: fork ssh in its own namespace so it wont keep the mountpoint opencinap_lenrek
2017-08-29sshfs: start sendproc and recvproc in the sane notegroup as the fs process ↵cinap_lenrek
so theadexitsall() works on sshfs: ending.
2017-08-29ether82563: make the ethernet of thinkpad p50 work (thanks sam-d)cinap_lenrek
2017-08-29audiohda: Intel Sunrise Point-H support (thanks sam-d)cinap_lenrek
2017-08-29sdnvme: pass 0 instead of 0xffffffff as NSID for identify controller and ↵cinap_lenrek
create completion/submission queue commands (thanks Ori_B) Samsung SSD 960 EVO fails with invalid namespace error otherwise...
2017-08-28devdup: remove useless OCEXEC check, handled by namec()cinap_lenrek
2017-08-28mergecinap_lenrek
2017-08-28devsegment: handle ORCLOSE on segment directory correctly, fix wrong qid, ↵cinap_lenrek
missing COPEN flag for segmentcreate()
2017-08-28devvmx, vmx: lilu dallas multivmaiju
2017-08-28vmx(1): don't realloc virtio queues -- breaks pointersaiju
2017-08-27sdiahci: Intel 200 Series Chipset Family PCH support (thanks aiju)cinap_lenrek
we used to tweak arround in the ICH registers for all intel controllers, which is wrong, as the 200 series has different magic registes. see the datasheet: https://www.intel.com/content/www/us/en/chipsets/200-series-chipset-pch-datasheet-vol-2.html this caused the clocks to be disabled for the 6th port causing a full machine lockup touching the 6th port registers. the next problem was that aiju's bios disabled the unused ports somehow but didnt clear ther PI bits, so that they would stay in Sbist status even after a port reset. so the port would get stuck in the Dportreset state forever. the fix for this was to use a one second timeout for the port reset procedure.
2017-08-24libmach: support disassembling from memoryaiju
2017-08-24vmx(1): VGA framebuffer should be normal memoryaiju
2017-08-24vmx(1): fixed code that assumed uintptr==uvlongaiju
2017-08-24vmx(1): memory map improvements, x86 simulator for MMIOaiju
2017-08-24devvmx: more efficient data structure for memory map; simplified (more ↵aiju
reliable) step function
2017-08-23igfx: fix cdclk and dpll settings for dual channel lvds on sandybridgeqwx
2017-08-22vt: turn off nl -> nl+cr translation default in raw mode, don't scroll more ↵cinap_lenrek
than screen height
2017-08-20vt: block selection mode for snarfcinap_lenrek
2017-08-20mergecinap_lenrek
2017-08-20vt: implement /dev/cons and /dev/consctl as a fileserver, winch, incremental ↵cinap_lenrek
redraw we used to bind a pipe to /dev/cons and /dev/consctl with some shared segment hack to pass tty info arround. now we implement this as a fileserver. add support for "winchon"/"winchoff" ctl message to enable interrupt on window size change. (used by ssh) keep track of fullscreen scrolls, avoiding redrawing the whole screen each time.
2017-08-20ssh: issue "winchon" ctl request to /dev/consctl to get interrupt on window ↵cinap_lenrek
size change from vt(1)
2017-08-20igfx: add did for x220qwx
2017-08-20igfx: fix sandybridge fdi link training bits and orderingqwx
- fix wrong bitfield for txctl (different between snb and ivb), and enable tx before rx - DPLL_CTL_x snb/ivb: don't touch reserved bits
2017-08-14vmx: allocate sticky instead of more expensive fixed segmentcinap_lenrek