Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-20 | dtracy: fix && | aiju | |
2019-01-13 | ether82563: fix bugus FCA write and link detection for i217 | cinap_lenrek | |
the FCA registers 0x28, 0x2C have been reassigned to to FEXTNVM on i217, i218 and i219 so add Fnofca flag and avoid writing the registers. make link detection more robust on i217 by delaying the phy status read after link status change by 150ms. we'd otherwise get a "phy wedged" (power saving state?) and not update the link status until the next link change. | |||
2019-01-12 | ether82563: work arround spurious jumbo packets on i217 (thanks k0ga) | cinap_lenrek | |
i217 appears to receive spurious jumbo frame and then stops receiving completely. reducing the mtu to 2k as a work arround for now. | |||
2019-01-12 | /sys/lib/plumb/basic: make plumbing page bookmarks work with relative paths ↵ | cinap_lenrek | |
(thanks Tobias Heinicke) | |||
2019-01-12 | ether82563: use 9018 byte mtu from datasheet for i217, i218, i219 | cinap_lenrek | |
2019-01-12 | merge | cinap_lenrek | |
2019-01-12 | ether82563, ether82598, etherx550: round rbsz to multiple of 1K | cinap_lenrek | |
the max packet size is configured in 1K increments on these chips, which can result in the card receiving a 10K packet but the driver having only allocated 9.5K of buffer. this actually caued pool corruption with i210, i217, i218, i219, i350. for 82598 and x550, we explicitely round rbsz to avoid similar bugs in the future, even tho the Rbsz constant was already a multiple of 1K and is not affected by the bug. | |||
2019-01-08 | torrent: avoid trying to fetch blocks past file | qwx | |
2019-01-04 | pc, pc64: properly track dependencies for mem.h on autogenerated ↵ | cinap_lenrek | |
apbootstrap.h and reboot.h targets | |||
2019-01-02 | upas/fs: don't put messages on the lru that cannot be uncached | cinap_lenrek | |
the lru is there to track least recently used messages so we can evict them from the cache and refetch them again on demand. for pop3 mailbox, which doesnt provide fetch routine, the messages should never be put on the freelist. | |||
2019-01-02 | upas/fs: include mkupas in mkfile last to get default target | cinap_lenrek | |
2018-12-31 | upas/fs: fix infinite loop in putcache (again) | Alex Musolino | |
The previous attempt to fix this problem (see changesets b32199e0f90a and 00ae79a6ba50) caused all calls to cachefree to free the cached message contents in addition to updating the LRU list. This causes problems for the POP3 driver since it provides no fetch function; once a message is evicted from the LRU cache, its contents is lost. This time we fix cachefree to always update the LRU list but only free the cached message contents if the driver provides a fetch function or the force flag is set. | |||
2018-12-28 | rsa(8): add example for tinc(8) (thanks k0ga, qwx) | cinap_lenrek | |
2018-12-28 | dtracy: fix conditional branch generation | aiju | |
2018-12-26 | remove function prototype that leaked into last commit | BurnZeZ | |
2018-12-26 | tcs: clean up old port code, and avoid writing 0 to stdout | BurnZeZ | |
2018-12-26 | mk: fix closing random fd from uninitialized stack variable (thanks BurnZeZ, ↵ | cinap_lenrek | |
mycroftiv) mycroftiv → this is practically "500 mile email" territory - the "6 letter mk bug" | |||
2018-12-24 | nusb/disk: revert previous attempts and just not issue capacity command when ↵ | cinap_lenrek | |
theres no media present | |||
2018-12-23 | Make the check work. | Ori Bernstein | |
Embarrassing. | |||
2018-12-24 | nusb/disk: implement 64 bit lba read/write commands (16 byte commands) | cinap_lenrek | |
untested. | |||
2018-12-24 | nusb/disk: fix typo "(" | cinap_lenrek | |
2018-12-23 | Don't unnecessarily unstall devices. | Ori Bernstein | |
Some SD card readers are slow to unstall. We try to unstall them in a loop if there's no SD card in there, but they're not stalled. They're happily reporting that there's no SD card in them by giving back the appropriate error code. Skipping the unstall speeds up the retry loop, cutting the time spent attaching the USB device at boot from multiple minutes to nearly instant. | |||
2018-12-24 | dossrv: cleanup | cinap_lenrek | |
2018-12-23 | dossrv: make GLONG() return ulong, handle getsect() error in dostat() | cinap_lenrek | |
2018-12-23 | etherx550: add intel 10GB ethernet controlller x550 driver (thanks joe9) | cinap_lenrek | |
2018-12-23 | ether82598: fix multicast filter (thanks aiju, joe9) | cinap_lenrek | |
2018-12-22 | dossrv: use 64 bit vlong for sectors | cinap_lenrek | |
2018-12-15 | dtracy: avoid pointer to integer truncation warning on amd64 | cinap_lenrek | |
2018-12-15 | fplot: fix operator associativity | aiju | |
2018-12-13 | fplot: add min/max operators | aiju | |
2018-12-13 | dtracy: get rid of DTName struct, support more than three parts in a probe ↵ | aiju | |
name, wildcard matching | |||
2018-12-13 | pc(1): reference counting bug | aiju | |
2018-12-13 | merge | Alex Musolino | |
2018-12-13 | upas/fs: remove now unnecessary "force" argument to cachefree | Alex Musolino | |
2018-12-12 | upas/fs: handle errors from fetch for cachebody()/cacheheaders() | cinap_lenrek | |
for imap, when a fetch fails, error out of read and stat. also don't add failed to download messages into the lru. | |||
2018-12-12 | merge | Alex Musolino | |
2018-12-12 | upas/fs: fix infinite loop in putcache | Alex Musolino | |
Force the cacheclear operation in the LRU cache trimming loop in order to guarantee that the cache becomes smaller with each iteration. Without the force flag cacheclear is a no-op for mailboxes that do not provide a fetch function, e.g. POP3. | |||
2018-12-11 | fortunes: [9fans] ..... UNSUBSCRIBE_HELP NEEDED | stanley lieber | |
2018-12-11 | forgotten files | aiju | |
2018-12-11 | kernel: change peek to return number of characters left rather than 0/-1 | aiju | |
2018-12-11 | dtracy: catch page faults | aiju | |
2018-12-11 | add dtracy support to mkdevc and enable dtracy with plan9.ini | aiju | |
2018-12-10 | sshfs: add exits(nil) to threadmain | BurnZeZ | |
2018-12-09 | dtracy: call dtptrigger with a struct pointer rather than a list of ↵ | aiju | |
arguments; put return value in arg9 | |||
2018-12-08 | dtracy: fix lexer bug | aiju | |
2018-12-08 | fix dtracy man page | aiju | |
2018-12-08 | add dtracy manpage | aiju | |
2018-12-08 | dtracy: add support for aggregations | aiju | |
2018-12-07 | rio: get rid of window delete thread, fix mysterious disappearing windows | cinap_lenrek | |
because a client might not handle resize, rio would try to move ther window offsceen after 750 ms. however, it does this by window name, which could have been reassigned by another concurrent rio, causing the wrong window to disappear. now we always move the window offscreen before freeimage(). this way we are sure to still have the right reference to the original window. | |||
2018-12-07 | add entries for il rcpu | BurnZeZ | |