| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Differential Revision: https://reviews.freebsd.org/D1871
Reviewed by: jfv, pjd
MFC after: 1 month
Sponsored by: Sandvine Inc.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Differential Revision: https://reviews.freebsd.org/D1870
Reviewed by: pjd, jfv
MFC after: 1 month
Sponsored by: Sandvine Inc
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Differential Revision: https://reviews.freebsd.org/D1869
Reviewed by: jfv, pjd
MFC after: 1 month
Sponsored by: Sandvine Inc.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
new files properly.
Pointy hat to: rstone
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Differential Revision: https://reviews.freebsd.org/D1869
Reviewed by: jfv, pjd
MFC after: 1 month
Sponsored by: Sandvine Inc.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Differential Revision: https://reviews.freebsd.org/D1868
Reviewed by: jfv, pjd
MFC after: 1 month
Sponsored by: Sandvine Inc.
|
| | | |
| | | |
| | | |
| | | | |
Reported by: bz
|
| | | |
| | | |
| | | |
| | | | |
Submitted by: Mariusz Zaborski <oshogbo@FreeBSD.org>
|
| | | |
| | | |
| | | |
| | | | |
Submitted by: Mariusz Zaborski <oshogbo@FreeBSD.org>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This allow for non-recursive iteration over nested nvlists, as in documented
example.
Submitted by: Mariusz Zaborski <oshogbo@FreeBSD.org>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
descriptor or free the memory before returning.
Submitted by: Mariusz Zaborski <oshogbo@FreeBSD.org>
While here, protect errno, so it won't be overwritted by close(2) or free(3).
|
| |_|/
|/| |
| | |
| | | |
While here reduce a bit overlinking
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
returning from handling a nested nvlist we were resetting big-endian flag.
Reported by: Kuleshov Aleksey @ yandex.ru
Tested by: Kuleshov Aleksey @ yandex.ru
|
| | |
| | |
| | |
| | | |
Submitted by: Mariusz Zaborski
|
| | |
| | |
| | |
| | |
| | | |
Reported by: Coverity
CID: 1238922
|
| | |
| | |
| | |
| | |
| | |
| | | |
the limit on number of nested nvlists.
Submitted by: Mariusz Zaborski
|
| | |
| | |
| | |
| | | |
Submitted by: Mariusz Zaborski
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
/lib , not /usr/lib
MFC after: 3 days
Approved by: rpaulo (mentor)
Submitted by: antoine
Pointyhat to: me
Phabric: D739
|
| | | |
|
| | |
| | |
| | |
| | | |
Reported by: sbruno
|
| | |
| | |
| | |
| | | |
Submitted by: Mariusz Zaborski <oshogbo@FreeBSD.org>
|
| |/
|/|
| |
| |
| |
| |
| |
| |
| | |
Rename all of the TAP test applications from <test> to <test>_test
to match the convention described in the TestSuite wiki page
Phabric: D538
Approved by: jmmv (mentor)
Sponsored by: EMC / Isilon Storage Division
|
| |
| |
| |
| |
| | |
PR: 191174
Submitted by: Franco Fichtner <franco at lastsummer.de>
|
|/
|
|
| |
MFC after: 1 week
|
|
|
|
|
|
|
|
|
|
|
|
| |
A bug caused the "big endian" flag to be lost when receiving a message. As a
result, the bits are interpreted as little endian and an extremely large
allocation is attempted.
This change fixes ping(8)'s communication to casperd(8) on big-endian
architectures.
Reported by: Anton Shterenlikht
Tested by: danfe
|
|
|
|
|
|
|
| |
It might be MFC'd to stable/10 for 10.1, but for now update the manual to
avoid confusion on its availability.
Discussed with: pjd
|
|
|
|
| |
Submitted by: Mariusz Zaborski <oshogbo@FreeBSD.org>
|
|
|
|
| |
Submitted by: Mariusz Zaborski <oshogbo@FreeBSD.org>
|
|
|
|
|
|
|
| |
Fix resource leaks on nvlist_destroy().
Reported by: Mariusz Zaborski <oshogbo@FreeBSD.org>
MFC after: 3 days
|
|
|
|
|
|
|
|
|
|
|
| |
Get rid of the msg_peek() function, which has a problem. If there was less
data in the socket buffer than requested by the caller, the function would busy
loop, as select(2) will always return immediately.
We can just receive nvlhdr now, because some time ago we splitted receive of
data from the receive of descriptors.
MFC after: 1 week
|
|
|
|
|
| |
Reported by: Coverity
Coverity CID: 1130048
|
|
are currently supported:
- NV_TYPE_NULL - only name, no data;
- NV_TYPE_BOOL - boolean (true or false);
- NV_TYPE_NUMBER - 64bit unsigned integer;
- NV_TYPE_STRING - C string;
- NV_TYPE_NVLIST - nested nvlist;
- NV_TYPE_DESCRIPTOR - file descriptor;
- NV_TYPE_BINARY - binary data.
For detailed documentation and examples see nv(3) manual page.
Sponsored by: The FreeBSD Foundation
|