committer filter by committer.
@path/to/ filter by path in repository.
committer@path/to/ filter by committer AND path in repository.
abdef0123 filter by commit's SHA hash.
rNNN filter by SVN revision.
rNNN-rMMM filter by SVN revisions range (inclusive).
Multiple filters can be specified separated by spaces or comas in which case they'll be combined using OR operator.
4e2f69f1 | dchagin | May 6, 2019, 8:01 p.m. | Adds sys/class/net devices to linsysfs.
Only two interfaces are created eth0 and lo and they expose the following properties: address, addr_len, flags, ifindex, mty, tx_queue_len and type. Initial patch developed by Carlos Neira in 2017 and finished by me. PR: 223722 MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D13656cgit ViewVC |
|
bbac65c7 | dchagin | May 6, 2019, 7:57 p.m. | Rewrite linux_ifflags() in more readable Linuxulator style.
Reviewed by: emaste MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D20146cgit ViewVC |
|
9c1437ae | dchagin | May 6, 2019, 7:56 p.m. | Complete r347052 (https://reviews.freebsd.org/D20137) as it it was not
a final revision. Fix style issues and change bool-like variables from int to bool. Reviewed by: emaste MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D20141cgit ViewVC |
|
141b1c32 | imp | May 6, 2019, 7:35 p.m. | Simplify boot1 allocation of handles. | |
8cb46437 | mav | May 6, 2019, 7:08 p.m. | Drop periph lock around cam_periph_unmapmem(). | |
7c28c7e8 | dchagin | May 6, 2019, 6:46 p.m. | The build process generates assym.inc from genassym.o, so don't forget | |
b9e19b07 | imp | May 6, 2019, 6:39 p.m. | Abstract out efi_devpath_to_handle to search for a handle that matches | |
f28eb485 | imp | May 6, 2019, 6:39 p.m. | We only ever need one devinfo per handle. So allocate it outside of | |
4cf36aa1 | imp | May 6, 2019, 6:38 p.m. | Reach over and pull in devpath.c from libefi | |
6b6e2954 | cem | May 6, 2019, 6:24 p.m. | List-ify kernel dump device configuration
Allow users to specify multiple dump configurations in a prioritized list. This enables fallback to secondary device(s) if primary dump fails. E.g., one might configure a preference for netdump, but fallback to disk dump as a second choice if netdump is unavailable. This change does not list-ify netdump configuration, which is tracked separately from ordinary disk dumps internally; only one netdump configuration can be made at a time, for now. It also does not implement IPv6 netdump. savecore(8) is already capable of scanning and iterating multiple devices from /etc/fstab or passed on the command line. This change doesn't update the rc or loader variables 'dumpdev' in any way; it can still be set to configure a single dump device, and rc.d/savecore still uses it as a single device. Only dumpon(8) is updated to be able to configure the more complicated configurations for now. As part of revving the ABI, unify netdump and disk dump configuration ioctl / structure, and leave room for ipv6 netdump as a future possibility. Backwards-compatibility ioctls are added to smooth ABI transition, especially for developers who may not keep kernel and userspace perfectly synced. Reviewed by: markj, scottl (earlier version) Relnotes: maybe Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D19996cgit ViewVC |
|
bca06413 | behlendorf1 | May 6, 2019, 5:37 p.m. | OpenZFS 10473 - zfs(1M) missing cross-reference to zfs-program(1M)
Authored by: Jason King <jason.king@joyent.com> Reviewed by: Toomas Soome <tsoome@me.com> Reviewed by: Andy Fiddaman <andy@omniosce.org> Reviewed by: Peter Tribble <peter.tribble@gmail.com> Reviewed by: Gergő Mihály Doma <domag02@gmail.com> Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Approved by: Dan McDonald <danmcd@joyent.com> Ported-by: Richard Laager <rlaager@wiktel.com> OpenZFS-issue: https://www.illumos.org/issues/10473 OpenZFS-commit: https://github.com/illumos/illumos-gate/commit/736e67003 Closes #8711cgit |
|
8cfb4431 | asomers | May 6, 2019, 4:54 p.m. | fusefs: Fix another obscure permission handling bug
Don't allow unprivileged users to set SGID on files to whose group they don't belong. This is slightly different than what POSIX says we should do (clear sgid on return from a successful chmod), but it matches what UFS currently does. Reported by: pjdfstest Sponsored by: The FreeBSD Foundationcgit ViewVC |
|
46068e86 | hselasky | May 6, 2019, 4:22 p.m. | Use PCIV_INVALID in pci_channel_offline() in the LinuxKPI. | |
a90e32de | asomers | May 6, 2019, 4:17 p.m. | fusefs: clear SUID & SGID after a successful write by a non-owner | |
fa233979 | hselasky | May 6, 2019, 4:17 p.m. | Disabling a PCI device should only disable busmaster in the LinuxKPI.
As Linux comment for this function point: Signal to the system that the PCI device is not in use by the system anymore. This only involves disabling PCI bus-mastering, if active. Build tested drm-current-kmod prior to commit. MFC after: 1 week Submitted by: slavash@ Sponsored by: Mellanox Technologiescgit ViewVC |