Page MenuHomeFreeBSD
Feed Advanced Search

Jun 14 2021

mmel added a comment to D30181: Add ofw interface support to PCI.

yes, this commit is root cause .
Please see attached log:

Jun 14 2021, 1:09 PM
mmel added a comment to D30293: extres: regulator: Fix regulator_status for already enable regulators.

IMHO, this is wrong change. regulator_status() must report physical state of regulator - if given deice is powered or not. the mmc power sequencer should use similar technique as backlight. But seems like this kind of usage is common - so we can expand regulator framework with uncounted function -> something like regulator_on()/regulator_off()

Jun 14 2021, 12:22 PM
mmel added a comment to D30181: Add ofw interface support to PCI.

Unfortunately this broke (probably) all existing FDT enabled boards with enumerated (not FDT loaded) PCI(e) interfaces (in my case both mcbin and tegra). This driver probe() matches all PCI buses, and many things (driver, ofw code) depend on the fact that calling ofw_bus_get_node(dev) on a non-FDT installed device returns zero.

Jun 14 2021, 12:13 PM
mmel added a comment to D30387: Make the code consistent with the comments.

Sorry for long delay. Can you, please, also test "(IDMAC_MAX_SIZE * (IDMAC_DESC_SEGS - 1)) / MMC_SECTOR_SIZE"? Minus one should be sufficient and it passed all my tests.

Jun 14 2021, 11:42 AM

Mar 19 2021

mmel added inline comments to D29310: kern/intr: switch to allocating handles forward.
Mar 19 2021, 9:58 AM

Mar 18 2021

mmel requested changes to D29310: kern/intr: switch to allocating handles forward.
Mar 18 2021, 12:29 PM

Mar 7 2021

mmel committed rG01c6d7918985: mvebu_gpio: Fix settings of gpio pin direction. (authored by mmel).
mvebu_gpio: Fix settings of gpio pin direction.
Mar 7 2021, 11:32 AM

Mar 4 2021

mmel committed rGa5dce53b75d8: mvebu_gpio: Multiple fixes. (authored by mmel).
mvebu_gpio: Multiple fixes.
Mar 4 2021, 4:55 PM
mmel closed D29044: mvebu_gpio: fix gpio pin configuration update.
Mar 4 2021, 4:55 PM
mmel committed rGf97f57b51855: simple_mfd: switch to controllable locking for syscon provider. (authored by mmel).
simple_mfd: switch to controllable locking for syscon provider.
Mar 4 2021, 3:18 PM

Mar 3 2021

mmel added a comment to D28911: mvebu_gpio: do not force data in value invertion during attach.

I don't think this change is necessary (it mitigates another bug). So I prefer to unconditionally initialize both registers in attach.

Mar 3 2021, 7:53 PM
mmel added a comment to D29044: mvebu_gpio: fix gpio pin configuration update.

write is expected (moreover these are WO ->thus not suitable for SYSCON_MODIFY operation).

Mar 3 2021, 7:40 PM
mmel added a comment to D29013: mvebu_gpio: fix interrupt cause register configuration.

I have initial part of this fixup. It should allow board to boot, at minimum. Unfortunately , the interrupt handling have still locking problem -> the solution needs change in syscon provided by simple_mfd driver -> so i need more time for this (one or two days).
But it would be nice if you can test this in your environment. It should fix hang-up issue in pcie driver.
What an ignominy...

Mar 3 2021, 6:02 PM

Mar 2 2021

mmel added a comment to D29013: mvebu_gpio: fix interrupt cause register configuration.

Noooo, Im stupid :( The root of the problem is trivial -> gpio_write() doesn't modify only the required bit, but the whole 32-bit register. HW init should use new gpio_modify() (implemented with SYSCON_MODIFY_4() not SYSCON_WRITE_4()). Big big sorry for troubles. I'll fix it tomorrow.

Mar 2 2021, 7:55 PM
mmel accepted D29013: mvebu_gpio: fix interrupt cause register configuration.

Oops. Thanks for fixing my bugs ...

Mar 2 2021, 7:24 PM

Mar 1 2021

mmel added a comment to D28803: arm/mv: Don't rely on firmware MSI mapping in ICU.

Thanks, perfect. Please let me know if you need help. I think that there will be more and more similar interrupt controllers/systems, so it's important to create a clean and flexible interface.

Mar 1 2021, 5:23 PM
mmel requested changes to D28803: arm/mv: Don't rely on firmware MSI mapping in ICU.

I'm sorry but I don't like this approach.
The PIC_MAP_INT function is designed to map external data of exact source to given irqsrc. It should not be misused to transfer any additional, platform specific data back to requester. Moreover if these external data (pure synthetic, without any relation to FDT) are passed as INTR_MAP_DATA_FDT to mapping layer.
Imho, we should convert gicp to standard MSI based interrupt controller. The communication between ICU and GICP should be splitted to normal MSI request and standard method for getting MSI mapping should be used (msi_map_msi()).
It's a little hard for me to express all the nuances so I can prepare skeleton for this solution, if you want.

Mar 1 2021, 4:38 PM
mmel accepted D28850: arm64: Fix spi_ranges_cnt in mv_ap806_gicp.

With above objection.

Mar 1 2021, 1:38 PM
mmel added a comment to D28911: mvebu_gpio: do not force data in value invertion during attach.

Can you please try the test again with https://cgit.FreeBSD.org/src/commit/?id=ce5a4083de2d79bc44d209c9e355a09ede47346c ? I hope that it fixed also this problem. Thanks.

Mar 1 2021, 1:24 PM
mmel committed rGce5a4083de2d: pci_dw_mv: Don't enable unhandled interrupts. (authored by mmel).
pci_dw_mv: Don't enable unhandled interrupts.
Mar 1 2021, 1:04 PM
mmel accepted D28938: AArch64: Don't set flush-subnormals-to-zero flag on startup.

My original idea was to do as much as possible for armv7. Primarily because it has been working on this platform for a long time. My bad is that I didn't remember that flush-to-zero mode was chosen because the little version of armv7 VFP may need software emulation for rounding to denormal values, so we chose the IEEE 754 incompatible mode.

Mar 1 2021, 12:13 PM

Feb 18 2021

mmel accepted D28775: cgem: improve usage of busdma(9) KPI.

Thanks.

Feb 18 2021, 5:26 PM

Feb 16 2021

mmel accepted D28579: arm64: Include NUMA locality info in the CPU topology.

Ahh, right, I forgot that Neoverse has (from this point of view) cache levels shifted – see slide 5 of https://www.slideshare.net/linaroorg/getting-the-most-out-of-dynamiq-enabling-support-of-dynamiq-sfo17104
So for purpose of OS optimization we can take real L1 + L2 caches as L1 in pre-neoverse meaning, real l3 in DynamIQ Shared Unit (DSU) block as L2 in pre-neoverse, and CMN as L3.
I think we can still handle all the cases using a two-level hierarchy, where NUMA domains as CG_SHARE_L3 groups and clusters as CG_SHARE_L2 groups will be exported. It should work on a server system, on a big.LITTLE (RK3399) and also on a medium SoC (LX2160A, which have 8 dual-core clusters). Do you think so?
I'm not sure if you want to implement this "extension", and I don't want to block you. The code in this review looks fine to me and doesn't block anything, so push it as needed.

Feb 16 2021, 1:47 PM

Feb 15 2021

mmel added a comment to D28579: arm64: Include NUMA locality info in the CPU topology.

I've spent some time digging up the ARM documentation, but unfortunately we don't seem to be able to determine the exact cache topology. But I think we can estimate it with a reasonable degree of accuracy. For rest, I assume that bit [24] bits is set (otherwise the affinity fields are shifted).

Feb 15 2021, 3:41 PM

Feb 13 2021

mmel added a comment to D28579: arm64: Include NUMA locality info in the CPU topology.

I agree with Andrew. We should use mpidr to build a cores topology. Nowadays it's easy, mpidr is stored in pcpu for all enumerated cores.
But there is another problem - cpuid should be taken as arbitrarily chosen value without any connection to cores topology - nobody can guarantee that cores are numbered sequentially within NUMA domain. Also assumption that NUMA domains are always symmetric (have same number of cores) looks too optimistic. Ampere, as well as LX2160, uses multicluster of dual cores with per cluster l2 cache - I think that L2 cache locality should also be included in initial implementation.
By that I mean that I offer help with implementation and testing on FDT based systems (unfortunately, ACPI is out of my scope and also setup).

Feb 13 2021, 1:04 PM
mmel committed rG15e64578cb1e: dwmmc: Multiple busdma fixes. (authored by mmel).
dwmmc: Multiple busdma fixes.
Feb 13 2021, 12:30 PM
mmel committed rG72d3aeb1b229: arm32: Align arguments of sync_icache() syscall to cacheline size. (authored by mmel).
arm32: Align arguments of sync_icache() syscall to cacheline size.
Feb 13 2021, 12:29 PM
mmel committed rGf63b87ec3ecf: arm64: Initialize VFP control register. (authored by mmel).
arm64: Initialize VFP control register.
Feb 13 2021, 12:29 PM

Feb 11 2021

mmel committed rG6930f97474e4: arm32: Align arguments of sync_icache() syscall to cacheline size. (authored by mmel).
arm32: Align arguments of sync_icache() syscall to cacheline size.
Feb 11 2021, 3:09 PM
mmel committed rGe8dfdf40bed9: dwmmc: Multiple busdma fixes. (authored by mmel).
dwmmc: Multiple busdma fixes.
Feb 11 2021, 3:09 PM
mmel committed rG214ef320018d: arm64: Initialize VFP control register. (authored by mmel).
arm64: Initialize VFP control register.
Feb 11 2021, 3:07 PM

Feb 9 2021

mmel committed rGec090f4a6765: arm32: Align arguments of sync_icache() syscall to cacheline size. (authored by mmel).
arm32: Align arguments of sync_icache() syscall to cacheline size.
Feb 9 2021, 12:13 PM

Feb 3 2021

mmel committed rG8727c174b0fe: dwmmc: Multiple busdma fixes. (authored by mmel).
dwmmc: Multiple busdma fixes.
Feb 3 2021, 8:33 PM
mmel committed rG65618fdda0f2: arm64: Initialize VFP control register. (authored by mmel).
arm64: Initialize VFP control register.
Feb 3 2021, 3:28 PM

Jan 27 2021

mmel accepted D28339: Remove redundantcy from the arm GIC softc.

LGTM

Jan 27 2021, 10:43 AM

Jan 21 2021

mmel added a comment to D28261: Return errors in bus_dmamap_load.

Kib, this error handling doesn't make sense to me, so I had to miss something important. Can you, please, explain me the context/reason for this strange kind of errors hiding? Moreover EBIG is also allowed in man page.

Jan 21 2021, 8:22 AM
mmel added a reviewer for D28261: Return errors in bus_dmamap_load: kib.
Jan 21 2021, 8:15 AM

Jan 19 2021

mmel committed rGf635cef2a420: arm64 busdma: Fix loading of small bounced buffers. (authored by mmel).
arm64 busdma: Fix loading of small bounced buffers.
Jan 19 2021, 12:10 PM
mmel added a comment to D27529: Allow access to all accessible physical memory through /dev/mem.

Problem is that you cannot expect that (and moreover you cannot determine if) kernel can access memory describes by FDT reservation.
FDT reservation node is used for various purposes. It may be used as an advisory (i.e. for dma buffers location), as a shared memory (i.e. for framebuffer) or as hard exclusion area (i.e. for memory used in secure world) – thus inaccessible from kernel. Moreover, in last case, the implementation is allowed to generate (in rare cases) imprecise exception as result of attempt to access this protected (by trustzone hardware) memory
The FDT reservations are typically added dynamically by u-Boot or ATF -> see fdt_add_reserved_memory(). There is some chance that you can use “no-map” attribute to determine if the reservation may be accessible by kernel. For other cases you must be sure that memory is not mapped by kernel with different attributes than in u-boot or firmware -> this is architecturally undefined behavior which leads sooner or later to loss of coherency.
By all this, you cannot blindly take reserved memory as accessible by kernel and exportable by /dev/mem to userspace.
I can only recommend you try the opposite approach – explicitly map ACPI tables to kernel. I assume, that you can determine memory range where are these tables are and also than you can determine memory attributes if these are mapped by other party (ACPI).

Jan 19 2021, 9:40 AM

Jan 15 2021

mmel accepted D28156: Add missing no-ctfconvert to C generation rules.

LGTM. thanks.
It is a bit questionable whether ctfconvert should generate an error in this case (I don't think so), but calling it is clearly unnecessary in this case.

Jan 15 2021, 9:09 AM

Jan 14 2021

mmel added a comment to D27529: Allow access to all accessible physical memory through /dev/mem.

I afraid that this approach have problem on FDT based systems. FDT typically uses reserved memory regions also for secure portion of base memory (memory used by secure monitor or PSCI). And reserved memory is handled by using EXFLAG_NOALLOC -> https://cgit.freebsd.org/src/tree/sys/arm64/arm64/machdep.c#n1193
And of course this kind of memory cannot be accessed by /dev/mem.

Jan 14 2021, 9:21 AM

Jan 9 2021

mmel added a reviewer for D27218: arm: tune vmparam.h towards a little more modern: kib.

Unfortunately, side effect of this is large reduction of VA space available for mmap -> available range for (unfixed) mmap is only in the interval <start of data segment + MAXDSIZ, end of user VA space>.

Jan 9 2021, 8:02 PM

Jan 2 2021

mmel accepted D27897: arm: fix atomic_testand{set,clear}_64 for ops on high bits.

Ohh right, my next mistake. Seems I have not lucky day today :(
Thanks for fixing my stupid bugs.

Jan 2 2021, 8:50 PM
mmel added a comment to D27895: arm: atomic_testand{set,clear} didn't follow atomic(9) API.

I just committed fix for arm.
Thanks for cooperation.

Jan 2 2021, 7:58 PM
mmel committed rGbd03acedb804: arm: Fix atomic_testand{set,clear}_32(). According to atomic (9), the bit… (authored by mmel).
arm: Fix atomic_testand{set,clear}_32(). According to atomic (9), the bit…
Jan 2 2021, 7:54 PM
mmel added a comment to D27886: arm64: fix mask in atomic_testand{set,clear}_64.
In D27886#623242, @mmel wrote:

Good catch. It never occurred to me that we could have a bug in atomics on two architectures at the same time, so I wasn't looking for a problem in my own garden :) I will try to fix arm by myself.

Are you saying 32-bit ARM is also broken? Those are a little weirder, I think it uses sys/sys/_atomic_subword.h.

Yes, it is also broken. ARM uses its own implementation, which does not do modulo for the bit position.
See https://cgit.freebsd.org/src/tree/sys/arm/include/atomic-v6.h#n862.
I will commit proper fix in next hour or so...

Jan 2 2021, 6:30 PM
mmel abandoned D27891: bitset: Fix BIT_TEST_SET_ATOMIC and BIT_TEST_CLR_ATOMIC..

Hmm, right. It would be better to read the manual before coding. My bad.

Jan 2 2021, 6:14 PM
mmel requested review of D27891: bitset: Fix BIT_TEST_SET_ATOMIC and BIT_TEST_CLR_ATOMIC..
Jan 2 2021, 12:06 PM
mmel accepted D27886: arm64: fix mask in atomic_testand{set,clear}_64.

Good catch. It never occurred to me that we could have a bug in atomics on two architectures at the same time, so I wasn't looking for a problem in my own garden :) I will try to fix arm by myself.
Tested on real HW, everything OK.

Jan 2 2021, 7:59 AM

Dec 30 2020

mmel committed rG28482babd08a: arm64: Use new arm_kernel_boothdr script for generating booti images. (authored by mmel).
arm64: Use new arm_kernel_boothdr script for generating booti images.
Dec 30 2020, 12:58 PM
mmel committed rG59f46e34cf64: sys/tools: Add a tool for generating arm and arm64 kernel images. (authored by mmel).
sys/tools: Add a tool for generating arm and arm64 kernel images.
Dec 30 2020, 12:25 PM
mmel committed rG509a00620523: Tegra210: Connect to GENERIC kernel. (authored by mmel).
Tegra210: Connect to GENERIC kernel.
Dec 30 2020, 10:02 AM
mmel committed rG30ae416898ef: Tegra210: Add lost-in-merge fixes: (authored by mmel).
Tegra210: Add lost-in-merge fixes:
Dec 30 2020, 10:02 AM

Dec 28 2020

mmel added inline comments to D26735: Improve loading of multipage aligned buffers..
Dec 28 2020, 2:03 PM
mmel committed rGe90347891960: ARM64: Port FreeBSD to Nvidia Jetson TX1 and Nano. (authored by mmel).
ARM64: Port FreeBSD to Nvidia Jetson TX1 and Nano.
Dec 28 2020, 1:19 PM

Dec 27 2020

mmel committed rGc8300031980e: EXTRES: Ignore index modifier flags for table based clock dividers. (authored by mmel).
EXTRES: Ignore index modifier flags for table based clock dividers.
Dec 27 2020, 4:49 PM
mmel accepted D27765: Use L2 blocks when in the identity map.

This is not entirely true, for every SoC we know where DRAM is located and its maximum size. Same is true for all MMIO peripherals.

Dec 27 2020, 3:58 PM
mmel added a comment to D27765: Use L2 blocks when in the identity map.

Tested with LINUX_BOOT_ABI, everything works fine.
But why did you also change the behavior for SOCDEV_PA/VA? Removal of the option to choose a SOCDEV_PA looks a like step backward to me. This breaks existing code (but covered by #if 0) for example in uart_dev_snps.c. At least this change should be mentioned in commit message, but I think that old way is better.

Dec 27 2020, 10:21 AM

Dec 26 2020

mmel committed rGb9cbd68d1cbb: ARM: Enhance common Nvidia Tegra drivers by support for Tegra210 SoC. (authored by mmel).
ARM: Enhance common Nvidia Tegra drivers by support for Tegra210 SoC.
Dec 26 2020, 6:29 PM
mmel added a comment to D27765: Use L2 blocks when in the identity map.

Can you, please, rebase this to fresh tree?
Patch fails for me with:

git apply -p0  ../../git/D27765.diff
error: patch failed: sys/arm64/arm64/locore.S:497
error: sys/arm64/arm64/locore.S: patch does not app
Dec 26 2020, 12:01 PM
mmel committed rG9211df29150d: MFC r366192: (authored by mmel).
MFC r366192:
Dec 26 2020, 7:53 AM

Dec 25 2020

mmel committed rGaa76f0c39741: PMC: remove now orphaned PMC for INTEL XScale processors. (authored by mmel).
PMC: remove now orphaned PMC for INTEL XScale processors.
Dec 25 2020, 2:55 PM

Dec 17 2020

mmel committed rS368717: MFC r368167,r368187,r368203:.
MFC r368167,r368187,r368203:
Dec 17 2020, 1:17 PM
mmel committed rS368715: MFC r368364:.
MFC r368364:
Dec 17 2020, 12:58 PM

Dec 16 2020

mmel closed D27265: Use the standard method for localizing of MSI-X table bar..
Dec 16 2020, 2:39 PM
mmel committed rS368698: Use the standard method for localizing of MSI-X table bar..
Use the standard method for localizing of MSI-X table bar.
Dec 16 2020, 2:39 PM
mmel committed rS368697: Allocate right number of pages for the bounced buffers crossing the page..
Allocate right number of pages for the bounced buffers crossing the page.
Dec 16 2020, 2:37 PM

Dec 14 2020

mmel committed rS368635: Remove unused functions and variables in cpufunc.[ch]..
Remove unused functions and variables in cpufunc.[ch].
Dec 14 2020, 2:01 PM
mmel committed rS368634: Finish implementation of ARM PMU interrupts..
Finish implementation of ARM PMU interrupts.
Dec 14 2020, 1:10 PM
mmel committed rS368633: Verify (and fix) the context_id argument passed to the mpentry () by PSCI..
Verify (and fix) the context_id argument passed to the mpentry () by PSCI.
Dec 14 2020, 11:58 AM
mmel committed rS368631: MFC r368161:.
MFC r368161:
Dec 14 2020, 11:09 AM
mmel committed rS368630: MFC r367955:.
MFC r367955:
Dec 14 2020, 10:17 AM
mmel committed rS368629: MFC r367865:.
MFC r367865:
Dec 14 2020, 10:14 AM
mmel committed rS368628: MFC r367447:.
MFC r367447:
Dec 14 2020, 9:49 AM

Dec 7 2020

mmel added a comment to D27040: devel/gdb: Update to 10.1.

Unfortunately, this fails on armv7 and on aarch64.

Dec 7 2020, 6:20 PM
mmel accepted D27497: Ensure the boot CPU is CPU 0 on arm64.

Works for me and it's much better than my initial proposal.

Dec 7 2020, 4:37 PM

Dec 5 2020

mmel committed rS368373: Remove remaning definition of GFB_<foo> options..
Remove remaning definition of GFB_<foo> options.
Dec 5 2020, 7:44 PM
mmel closed D13863: Simplify and cleanup startup code for secondary cores..
Dec 5 2020, 2:06 PM
mmel committed rS368370: Simplify startup of secondary cores and store MPIDR register to pcpu..
Simplify startup of secondary cores and store MPIDR register to pcpu.
Dec 5 2020, 2:06 PM
mmel committed rS368369: Add basic support for Freescale LX2160A SoC..
Add basic support for Freescale LX2160A SoC.
Dec 5 2020, 12:09 PM
mmel committed rS368367: Connect DTB files based on LX2160A SoC to build..
Connect DTB files based on LX2160A SoC to build.
Dec 5 2020, 11:18 AM
mmel committed rS368364: DesignWare PCIe driver: Don't call bus_generic_attach() twice..
DesignWare PCIe driver: Don't call bus_generic_attach() twice.
Dec 5 2020, 10:55 AM
mmel committed rS368363: Connect RK3288 to GENERIC kernel..
Connect RK3288 to GENERIC kernel.
Dec 5 2020, 10:10 AM
mmel committed rS368362: Also build DTB files for Asus Tinker board (RK3288 based)..
Also build DTB files for Asus Tinker board (RK3288 based).
Dec 5 2020, 10:01 AM

Dec 4 2020

mmel added inline comments to D27448: Two commits to cleanup needless wmb() in nvme driver.
Dec 4 2020, 4:40 PM
mmel committed rS368340: Add support for RK3288 SoC..
Add support for RK3288 SoC.
Dec 4 2020, 4:24 PM
mmel committed rS368334: Add a driver for FAN53555 based PMIC..
Add a driver for FAN53555 based PMIC.
Dec 4 2020, 3:23 PM
mmel committed rS368332: Add a driver for HYM8563 based RTC..
Add a driver for HYM8563 based RTC.
Dec 4 2020, 3:10 PM
mmel committed rS368331: Add a driver for ACT8846 used as PMIC for RK3288 SoC..
Add a driver for ACT8846 used as PMIC for RK3288 SoC.
Dec 4 2020, 2:57 PM
mmel added inline comments to D27448: Two commits to cleanup needless wmb() in nvme driver.
Dec 4 2020, 10:00 AM

Dec 3 2020

mmel added a comment to D27448: Two commits to cleanup needless wmb() in nvme driver.

I want to be stronger :) - to the best of my knowledge, wmb ()) is not needed at all or bus_dmamap_sync() is broken for x86. Nothing in between.
In current revision, the memory barrier should be ensured by calling bus_dmamap_sync() - (it's an external function and the buffer is not local variable, so compiler must expect access to these data).
I think that x86 architecture ensures right store ordering also for external observers so I think usage of wmb() (or any other explicit synchronization) in any driver is nothing but bug.

Dec 3 2020, 11:44 AM
mmel added a reviewer for D27448: Two commits to cleanup needless wmb() in nvme driver: kib.
Dec 3 2020, 11:43 AM

Dec 2 2020

mmel closed D27446: NVME: Multiple busdma related fixes..
Dec 2 2020, 4:54 PM
mmel committed rS368279: NVME: Multiple busdma related fixes..
NVME: Multiple busdma related fixes.
Dec 2 2020, 4:54 PM
mmel added a comment to D27446: NVME: Multiple busdma related fixes..

Bah, Warner was much faster :)

Dec 2 2020, 4:44 PM
mmel added a comment to D27446: NVME: Multiple busdma related fixes..

This wmb() was exist in initial version of nvme drivers, which did not used standard FreeBSD busdma functions.
See https://svnweb.freebsd.org/base/head/sys/dev/nvme/nvme_qpair.c?view=markup&pathrev=240616#l415 .
I'm near sure it was used as barrier to ensure the visibility of memcpy() few line above to nvme dma before the real comand is fired (by nvme_mmio_write_4()).

Dec 2 2020, 4:35 PM
mmel updated the summary of D27446: NVME: Multiple busdma related fixes..
Dec 2 2020, 12:57 PM
mmel requested review of D27446: NVME: Multiple busdma related fixes..
Dec 2 2020, 12:56 PM
mmel committed rS368273: Fix r368153. Wrong branch of #ifdef __ARMEB__ was deleted..
Fix r368153. Wrong branch of #ifdef __ARMEB__ was deleted.
Dec 2 2020, 8:15 AM

Dec 1 2020

mmel added a comment to D27265: Use the standard method for localizing of MSI-X table bar..

ping.

Dec 1 2020, 3:17 PM