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.
8682abbf | pho | June 3, 2021, 5:23 a.m. | stress2: Remove thr_new() from the ignore list after 6cda62755612 | |
5104dfbe | np | June 3, 2021, 4:44 a.m. | bsdinstall: Fix typo (Instalation -> Installation). | |
cfae2120 | imp | June 3, 2021, 3:58 a.m. | mmc-fdt: fix mmc_fdt_gpio_get_{present,readonly}
Currently, mmc_fdt_gpio_get_{present,readonly} return all time true. true ^ 100b = true false ^ 100b = true since that's done after promotion to integers. Use !! to convert the bit to a bool before xor. Reviewed by: imp@ (converted to (bool) to !! for portability) Pull Request: https://github.com/freebsd/freebsd-src/pull/461cgit |
|
43521b46 | imp | June 3, 2021, 3:50 a.m. | Correcting comment about "sched_interact_score".
Reviewed by: jrtc@, imp@ Pull Request: https://github.com/freebsd/freebsd-src/pull/431 Sponsored by: Netflixcgit |
|
dd41de95 | emaste | June 3, 2021, 2:41 a.m. | Cirrus-CI: retry pkg installation on failure
Pkg installation failed somewhat frequently, always at: [62/104] Fetching jpeg-turbo-2.0.6.txz: .......... done pkg: http://pkgmir.geo.freebsd.org/FreeBSD:13:amd64/quarterly/All/jbigkit-2.1_1.txz: No route to host Move pkg installation to a script and retry once upon failure as a (hopefully temporary) workaround. Reviewed by: imp MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D30613cgit |
|
441e69e4 | rew | June 3, 2021, 2:30 a.m. | fsck_ufs: fix segfault with gjournal
The segfault was being hit in ckfini() (sbin/fsck_ffs/fsutil.c) while attempting to traverse the buffer cache. The tail queue used for the buffer cache was not initialized before dropping into gjournal_check(). Initialize the buffer cache before calling gjournal_check(). PR: 245907 Reviewed by: jhb, mckusick MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D30537cgit |
|
e7dc0841 | imp | June 3, 2021, 1:46 a.m. | mmc: ignore CRC errors from CMD13 (status) when changing rates
Update mmc_switch_status to ignore a few CRC errrors when asking for the card status after setting the new rate with CMD6. Since the card may take a little while to make the switch, it's possible we'll get a communications error if we sent the command at the wrong time. Several low end laptops needs this workaround as they have a window that seems longer than other systems. This is known to fix at least the Acer Aspire A114-32-P7E5. Reviewed by: imp@, manu@ Differential Revision: https://reviews.freebsd.org/D24740cgit |
|
9a0f8228 | cy | June 3, 2021, 12:25 a.m. | wpa: Fix a SIGBUS error in wpa_sm_set_rekey_offload
Incorrectly linked built-in wpa functions resulted in overwriting sm->ctx->set_rekey_offload with garbage. It was initialized correctly however it changed after wpa_supplicant became a daemon. No SIGBUS violations reported by dhw@ were experienced during testing of the original commit by msyelf or philip@. Reported by: dhw Tested by: dhw MFC after: 2 months X-MFC with: 25ecdc7d52770caf1c9b44b5ec11f468f6b636f3cgit |
|
48b11217 | cy | June 3, 2021, 12:25 a.m. | libradius: fix no SSL build
int alen is only used with SSL.cgit |
|
90352654 | emaste | June 2, 2021, 11:58 p.m. | Cirrus-CI: Add descriptive task name
Previously it appeared only as "main" in places like GitHub's list of checks run as part of a pull request. MFC after: 1 week Sponsored by: The FreeBSD Foundationcgit |
|
29cd0d72 | jkim | June 2, 2021, 11:07 p.m. | hptrr: use BLOB_OBJS for pre-built .o's | |
e3149e0a | kib | June 2, 2021, 10:55 p.m. | rtld: Rename -t option to -u (ignore LD_ vars)
Requested by: arichardson Sponsored by: The FreeBSD Foundation MFC after: 3 dayscgit |
|
984c71f9 | rmacklem | June 2, 2021, 10:28 p.m. | nfsd: Fix the failure return for non-fh NFSv4 operations
Without this patch, nfsd_checkrootexp() returns failure and then the NFSv4 operation would reply NFSERR_WRONGSEC. RFC5661 Sec. 2.6 only allows a few NFSv4 operations, none of which call nfsv4_checktootexp(), to return NFSERR_WRONGSEC. This patch modifies nfsd_checkrootexp() to return the error instead of a boolean and sets the returned error to an RPC layer AUTH_ERR, as discussed on nfsv4@ietf.org. The patch also fixes nfsd_errmap() so that the pseudo error NFSERR_AUTHERR is handled correctly such that an RPC layer AUTH_ERR is replied to the NFSv4 client. The two new "enum auth_stat" values have not yet been assigned by IANA, but are the expected next two values. The effect on extant NFSv4 clients of this change appears limited to reporting a different failure error when a mount that does not use adequate security is attempted. MFC after: 2 weekscgit |
|
56fd9766 | imp | June 2, 2021, 9:59 p.m. | gconcat: Add new lock to allow modifications to the disk list in preparation for online append
In addition, rename existing sc_lock to sc_append_lock Reviewed by: imp@ Pull Request: https://github.com/freebsd/freebsd-src/pull/447 Sponsored by: Netflixcgit |
|
e61e072f | imp | June 2, 2021, 9:50 p.m. | gconcat: Switch array to TAILQ to prepare for online append
Reviewed by: imp@ Pull Request: https://github.com/freebsd/freebsd-src/pull/447 Sponsored by: Netflixcgit |