| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
occurred with large read-ahead requests. This only affected
formats that incorrectly make large requests (ZIP did this until
recently) or with block sizes over 32k.
|
| |
|
| |
|
|
|
|
|
|
| |
32-bit 64-bit
main thread 2MB 4MB
other threads 1MB 2MB
|
| |
|
|
|
|
|
| |
Implement more device functions.
Make DMA optional.
|
|
|
|
| |
Thanks to: Ruslan
|
|
|
|
| |
This avoids having error messages get concatenated over multiple calls.
|
|
|
|
| |
Also remove some unnecessary blank lines from archive_read.3.
|
|
|
|
|
|
|
|
|
|
|
| |
When reading the bodies of Zip archive entries, request a minimum of 1
byte, rather than a minimum of the full entry size. This is faster
(since it does not force the decompression layer to combine reads) and
works around a bug in the "none" decompression handler (which I'm
testing a separate fix for now). I've also renamed "bytes_read" to
"bytes_avail" in several places to more accurately reflect that the
value returned from (a->compression_read_ahead) is the number of bytes
available, not necessarily the number of bytes requested.
|
|
|
|
|
|
|
|
|
|
|
|
| |
(padding) entries, extract inode value from PX entry, recognize SP and
ST (start/end of SUSP extensions).
I don't enforce SP yet, as I've seen CDROMs which use Rockridge
extensions but don't have the SP record (which is officially
required).
The ISO9660 support is now mature enough to extract FreeBSD
distribution CDROMs created with mkisofs.
|
|
|
|
|
|
|
| |
For example, when using 'gunzip | tar' to decompress.
Also, fix some style issues (write null character as '\0').
Thanks to: Jaakko Heinonen
|
|
|
|
|
|
| |
Add ibsta and start to use it.
Rename the argument structure more sensibly.
Improve timeout and error handling
|
| |
|
|
|
|
| |
Reviewed by: tjr
|
|
|
|
|
|
| |
PR: misc/77369
Submitted by: Ed Maste <emaste@phaedrus.sandvine.ca>
MFC after: 1 week
|
|
|
|
| |
for more than INT_MAX bytes.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
the header. Otherwise we will send a message with zero version.
MFC after: 3 days
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
C90, and other arcana. Most of these features were never fully
supported or enabled by default.
Ok: bde, stefanf
|
|
|
|
| |
MFC After: 3 days
|
|
|
|
| |
Suggested by: Ed Maste <emaste@phaedrus.sandvine.ca>
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Obtained from: KAME
MFC after: 1 week
|
|
|
|
|
|
|
|
| |
- Remove all:. It's redundant, and ${LIB} in it is just a bug.
- Remove .ORDER:. *.mgc files can safely be built in parallel.
- Remove PITA. The mkmagic tool is smart to put the binary file
into the current directory (${.OBJDIR}) even if the source file
lives somewhere else, which is just what we need.
|
| |
|
|
|
|
|
| |
Obtained from: KAME
MFC after: 1 week
|
|
|
|
|
|
|
| |
follow new recommendation in RFC3493.
Obtained from: KAME
MFC after: 1 week
|
|
|
|
| |
MFC after: 1 week
|
|
|
|
|
|
|
|
| |
manpages. They are not very related, so separating them makes it
easier to add meaningful cross-references and extend some of the
descriptions.
- Move the part of math(3) that discusses IEEE 754 to the ieee(3)
manpage.
|
|
|
|
| |
I never got around to making use of it.
|
| |
|
|
|
|
|
| |
Reported by: tinderbox
Pointy hat: me
|
|
|
|
|
|
|
| |
Only supports "deflate" and "none" compression for now.
Also, add a few clarifications to the archive_read.3 manpage as
requested by William Dean DeVries.
|
|
|
|
|
|
|
|
| |
destination address to a datagram socket that is already connected.
Submitted by: Rudolf Cejka <cejkar@fit.vutbr.cz>
PR: docs/76399
MFC after: 1 week
|
|
|
|
| |
Approved by: ru
|
|
|
|
| |
Approved by: ru
|
| |
|
|
|
|
|
|
|
|
|
| |
copy the acquired TGT from the in-memory cache to the on-disk cache
at login. This was documented but un-implemented behavior.
MFC after: 1 week
PR: bin/64464
Reported and tested by: Eric van Gyzen <vangyzen at stat dot duke dot edu>
|