Author: andrew
Date: Tue Jul 28 09:29:56 2020
New Revision: 363636
URL: https://svnweb.freebsd.org/changeset/base/363636
Log:
Add an ACPI attachment for if_smc
This is needed by some of the Arm simulators as they implement a smc based
network interface, but use ACPI rather than FDT.
Author: andrew
Date: Tue Jul 28 09:46:58 2020
New Revision: 363637
URL: https://svnweb.freebsd.org/changeset/base/363637
Log:
Enable use of the regulator in the Broadcom SDHCI controller
This will be needed before a future GPIO controller driver is added
as the later enables regulators th
Hi,
On 7/27/20 7:17 PM, Rodney W. Grimes wrote:
On 7/27/20 6:41 PM, Rodney W. Grimes wrote:
Author: 0mp (doc,ports committer)
Date: Mon Jul 27 10:45:47 2020
New Revision: 363598
URL: https://svnweb.freebsd.org/changeset/base/363598
Log:
nologin.8: Improve wording
I disagree that this impr
Author: mw
Date: Tue Jul 28 10:08:07 2020
New Revision: 363638
URL: https://svnweb.freebsd.org/changeset/base/363638
Log:
Fix ENA build when integrated into kernel
Provide missing rules for ena_datapath.c and ena_netmap.c,
which prevented the ENA driver from building.
This issue was sho
Author: andrew
Date: Tue Jul 28 10:37:58 2020
New Revision: 363639
URL: https://svnweb.freebsd.org/changeset/base/363639
Log:
Have the bcm2835 firmware driver depend on the mailbox driver
The firmware driver uses the mailbox driver to communicate with the
firmware. Make this a more formal
Author: andrew
Date: Tue Jul 28 10:40:00 2020
New Revision: 363640
URL: https://svnweb.freebsd.org/changeset/base/363640
Log:
Move the bcm2835 mailbox driver earlier in the boot
This will be needed before the firmware driver is loaded
Modified:
head/sys/arm/broadcom/bcm2835/bcm2835_mbox.
Author: andrew
Date: Tue Jul 28 10:41:43 2020
New Revision: 363641
URL: https://svnweb.freebsd.org/changeset/base/363641
Log:
Revert r363639 so I can use a more correct commit message
Modified:
head/sys/arm/broadcom/bcm2835/bcm2835_firmware.c
Modified: head/sys/arm/broadcom/bcm2835/bcm2835_f
Author: andrew
Date: Tue Jul 28 10:43:52 2020
New Revision: 363642
URL: https://svnweb.freebsd.org/changeset/base/363642
Log:
Move the bcm2835 firmware driver earlier in the boot.
It will be needed by other eaarly drivers.
While here make the dependency of the mailbox formal with MODUL
Author: andrew
Date: Tue Jul 28 10:45:29 2020
New Revision: 363643
URL: https://svnweb.freebsd.org/changeset/base/363643
Log:
Switch the bcm2835 cpufreq driver to use the firmware interface
Use the new Raspberry Pi firmware driver in the cpufreq driver. It is
intended all drivers that nee
Author: nyan
Date: Tue Jul 28 10:58:37 2020
New Revision: 363644
URL: https://svnweb.freebsd.org/changeset/base/363644
Log:
- Cleanups related to sparc64 removal.
- Remove remains of sparc64 files.
Reviewed by: imp
Differential Revision:https://reviews.freebsd.org/D25831
Delet
Author: andrew
Date: Tue Jul 28 11:13:37 2020
New Revision: 363645
URL: https://svnweb.freebsd.org/changeset/base/363645
Log:
Aadd Raspberry Pi firmware messages to manage GPIOs
Some GPIOs are managed by an external IO expaandder through the firmware.
Add the message details for these.
Author: alfredo
Date: Tue Jul 28 11:23:37 2020
New Revision: 363646
URL: https://svnweb.freebsd.org/changeset/base/363646
Log:
virtio: fix mips regression introduced by r357596
PowerPC support was fixed in r357596 by changing PCI bustag to BE as
part of the solution, but this caused regre
Author: andrew
Date: Tue Jul 28 11:32:45 2020
New Revision: 363647
URL: https://svnweb.freebsd.org/changeset/base/363647
Log:
Add a workaround for a bug when setting the Raspberry GIO config and state
The Raspberry Pi GPIO config and state messages incorrectly return with
the tag length s
On 7/27/20 9:25 AM, Mark Johnston wrote:
+
+ /*
+* We may be attempting to free the page as part of the handling for an
+* I/O error, in which case the page was xbusied by a different thread.
+*/
+ vm_page_xbusy_claim(m);
I've just noticed that vm_page_xbusy_
On Tue, Jul 28, 2020 at 08:44:11AM -0500, Eric van Gyzen wrote:
> On 7/27/20 9:25 AM, Mark Johnston wrote:
> > +
> > + /*
> > +* We may be attempting to free the page as part of the handling for an
> > +* I/O error, in which case the page was xbusied by a different thread.
> > +*/
> >
Author: markj
Date: Tue Jul 28 15:26:19 2020
New Revision: 363649
URL: https://svnweb.freebsd.org/changeset/base/363649
Log:
ps(1): Fix formatting of the "command" field for kernel threads.
When -H is specified, for kernel threads the command is formatted as
"/" and truncated to MAXCOMLEN
Author: br
Date: Tue Jul 28 16:08:14 2020
New Revision: 363650
URL: https://svnweb.freebsd.org/changeset/base/363650
Log:
o Move the buswide_ctxs bitmap to iommu_unit and rename related functions.
o Rename bus_dma_dmar_load_ident() as well.
Reviewed by: kib
Sponsored by: DARPA/AFRL
D
Author: jhb
Date: Tue Jul 28 17:09:15 2020
New Revision: 363652
URL: https://svnweb.freebsd.org/changeset/base/363652
Log:
Add further clarification on si_addr and si_trapno.
- In the initial description of si_addr, do not claim that it is
always the faulting instruction.
- For si_
On Fri, Jul 24, 2020 at 05:34:05PM +, Conrad Meyer wrote:
> Author: cem
> Date: Fri Jul 24 17:34:04 2020
> New Revision: 363482
> URL: https://svnweb.freebsd.org/changeset/base/363482
>
> Log:
> Add unlocked/SMR fast path to getblk()
>
> Convert the bufobj tries to an SMR zone/PCTRIE an
> Hi,
>
> On 7/27/20 7:17 PM, Rodney W. Grimes wrote:
> > On 7/27/20 6:41 PM, Rodney W. Grimes wrote:
> Author: 0mp (doc,ports committer)
> Date: Mon Jul 27 10:45:47 2020
> New Revision: 363598
> URL: https://svnweb.freebsd.org/changeset/base/363598
>
> Log:
>
Author: markj
Date: Tue Jul 28 19:50:39 2020
New Revision: 363654
URL: https://svnweb.freebsd.org/changeset/base/363654
Log:
vm_page_xbusy_claim(): Use atomics to update busy lock state.
vm_page_xbusy_claim() could clobber the waiter bit. For its original
use, kernel memory pages, this w
Author: csjp
Date: Tue Jul 28 20:06:16 2020
New Revision: 363655
URL: https://svnweb.freebsd.org/changeset/base/363655
Log:
Fixup some incorrect information and some comments. These changes
were cherry picked up the upstream OpenBSD repository. At some point we
will look at doing another imp
On Tue, Jul 28, 2020 at 08:06:16PM +, Christian S.J. Peron wrote:
> Author: csjp
> Date: Tue Jul 28 20:06:16 2020
> New Revision: 363655
> URL: https://svnweb.freebsd.org/changeset/base/363655
>
> Log:
> Fixup some incorrect information and some comments. These changes
> were cherry picked
Author: mav
Date: Tue Jul 28 22:32:50 2020
New Revision: 363656
URL: https://svnweb.freebsd.org/changeset/base/363656
Log:
When modifying LUN pass "special" options too.
Before switching to nvlists CTL merged previous and new options, so
any options not passed just kept previous value. N
Author: emaste
Date: Wed Jul 29 00:34:24 2020
New Revision: 363657
URL: https://svnweb.freebsd.org/changeset/base/363657
Log:
sshd: allow UseBlocklist alias for UseBlacklist
blacklistd has been renamed to blocklistd upstream, and a future
import into FreeBSD will follow that change. Supp
Author: rew
Date: Wed Jul 29 05:27:19 2020
New Revision: 363659
URL: https://svnweb.freebsd.org/changeset/base/363659
Log:
Add myself (rew) as src committer.
Reviewed by:kevans (mentor), allanjude (mentor)
Approved by:kevans (mentor), allanjude (mentor)
Differential Revision: ht
26 matches
Mail list logo