linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-07-07 14:45:32 to 2024-07-14 08:37:21 UTC [more...]

[RFC PATCH v4 00/17] powerpc: Core ftrace rework, support for ftrace direct and bpf trampolines
 2024-07-14  8:27 UTC  (12+ messages)
` [RFC PATCH v4 03/17] powerpc64/ftrace: Nop out additional 'std' instruction emitted by gcc v5.x
` [RFC PATCH v4 04/17] powerpc32/ftrace: Unify 32-bit and 64-bit ftrace entry code
` [RFC PATCH v4 05/17] powerpc/module_64: Convert #ifdef to IS_ENABLED()
` [RFC PATCH v4 06/17] powerpc/ftrace: Remove pointer to struct module from dyn_arch_ftrace
` [RFC PATCH v4 11/17] kbuild: Add generic hook for architectures to use before the final vmlinux link
` [RFC PATCH v4 12/17] powerpc64/ftrace: Move ftrace sequence out of line
` [RFC PATCH v4 13/17] powerpc64/ftrace: Support .text larger than 32MB with out-of-line stubs
` [RFC PATCH v4 14/17] powerpc/ftrace: Add support for DYNAMIC_FTRACE_WITH_CALL_OPS
` [RFC PATCH v4 15/17] powerpc/ftrace: Add support for DYNAMIC_FTRACE_WITH_DIRECT_CALLS
` [RFC PATCH v4 16/17] samples/ftrace: Add support for ftrace direct samples on powerpc
` [RFC PATCH v4 17/17] powerpc64/bpf: Add support for bpf trampolines

[RFC PATCH v3 00/11] powerpc: Add support for ftrace direct and BPF trampolines
 2024-07-14  7:52 UTC  (3+ messages)

[PATCH v2 net-next 0/5] Eliminate CONFIG_NR_CPUS dependency in dpaa-eth and enable COMPILE_TEST in fsl_qbman
 2024-07-13 22:53 UTC  (6+ messages)
` [PATCH v2 net-next 1/5] net: dpaa: avoid on-stack arrays of NR_CPUS elements
` [PATCH v2 net-next 2/5] net: dpaa: eliminate NR_CPUS dependency in egress_fqs[] and conf_fqs[]
` [PATCH v2 net-next 3/5] net: dpaa: stop ignoring TX queues past the number of CPUs
` [PATCH v2 net-next 4/5] net: dpaa: no need to make sure all CPUs receive a corresponding Tx queue
` [PATCH v2 net-next 5/5] soc: fsl: qbman: FSL_DPAA depends on COMPILE_TEST

[PATCH net-next 0/5] Eliminate CONFIG_NR_CPUS dependency in dpaa-eth and enable COMPILE_TEST in fsl_qbman
 2024-07-13 22:37 UTC  (12+ messages)
` [PATCH net-next 1/5] net: dpaa: avoid on-stack arrays of NR_CPUS elements
` [PATCH net-next 2/5] net: dpaa: eliminate NR_CPUS dependency in egress_fqs[] and conf_fqs[]
` [PATCH net-next 3/5] net: dpaa: stop ignoring TX queues past the number of CPUs
` [PATCH net-next 4/5] net: dpaa: no need to make sure all CPUs receive a corresponding Tx queue
` [PATCH net-next 5/5] soc: fsl: qbman: FSL_DPAA depends on COMPILE_TEST

[PATCH V6 00/18] Add data type profiling support for powerpc
 2024-07-13 17:21 UTC  (28+ messages)
` [PATCH V6 01/18] tools/perf: Move the data structures related to register type to header file
` [PATCH V6 02/18] tools/perf: Add "update_insn_state" callback function to handle arch specific instruction tracking
` [PATCH V6 03/18] tools/perf: Update TYPE_STATE_MAX_REGS to include max of regs in powerpc
` [PATCH V6 04/18] tools/perf: Add disasm_line__parse to parse raw instruction for powerpc
` [PATCH V6 05/18] tools/perf: Add support to capture and parse raw instruction in powerpc using dso__data_read_offset utility
` [PATCH V6 06/18] tools/perf: Update parameters for reg extract functions to use raw instruction on powerpc
` [PATCH V6 07/18] tools/perf: Add parse function for memory instructions in powerpc
` [PATCH V6 08/18] tools/perf: Add support to identify memory instructions of opcode 31 "
` [PATCH V6 09/18] tools/perf: Add some of the arithmetic instructions to support instruction tracking "
` [PATCH V6 10/18] tools/perf: Add more instructions for instruction tracking
` [PATCH V6 11/18] tools/perf: Update instruction tracking for powerpc
` [PATCH V6 12/18] tools/perf: Make capstone_init non-static so that it can be used during symbol disassemble
` [PATCH V6 13/18] tools/perf: Use capstone_init and remove open_capstone_handle from disasm.c
` [PATCH V6 14/18] tools/perf: Add support to use libcapstone in powerpc
` [PATCH V6 15/18] tools/perf: Add support to find global register variables using find_data_type_global_reg
` [PATCH V6 16/18] tools/perf: Add support for global_die to capture name of variable in case of register defined variable
` [PATCH V6 17/18] tools/perf: Update data_type_cmp and sort__typeoff_sort function to include var_name in comparison
` [PATCH V6 18/18] tools/perf: Set instruction name to be used with insn-stat when using raw instruction

[PATCH V7 00/18] Add data type profiling support for powerpc
 2024-07-13 16:55 UTC  (19+ messages)
` [PATCH V7 01/18] tools/perf: Move the data structures related to register type to header file
` [PATCH V7 02/18] tools/perf: Add "update_insn_state" callback function to handle arch specific instruction tracking
` [PATCH V7 03/18] tools/perf: Update TYPE_STATE_MAX_REGS to include max of regs in powerpc
` [PATCH V7 04/18] tools/perf: Add disasm_line__parse to parse raw instruction for powerpc
` [PATCH V7 05/18] tools/perf: Add support to capture and parse raw instruction in powerpc using dso__data_read_offset utility
` [PATCH V7 06/18] tools/perf: Update parameters for reg extract functions to use raw instruction on powerpc
` [PATCH V7 07/18] tools/perf: Add parse function for memory instructions in powerpc
` [PATCH V7 08/18] tools/perf: Add support to identify memory instructions of opcode 31 "
` [PATCH V7 09/18] tools/perf: Add some of the arithmetic instructions to support instruction tracking "
` [PATCH V7 10/18] tools/perf: Add more instructions for instruction tracking
` [PATCH V7 11/18] tools/perf: Update instruction tracking for powerpc
` [PATCH V7 12/18] tools/perf: Make capstone_init non-static so that it can be used during symbol disassemble
` [PATCH V7 13/18] tools/perf: Use capstone_init and remove open_capstone_handle from disasm.c
` [PATCH V7 14/18] tools/perf: Add support to use libcapstone in powerpc
` [PATCH V7 15/18] tools/perf: Add support to find global register variables using find_data_type_global_reg
` [PATCH V7 16/18] tools/perf: Add support for global_die to capture name of variable in case of register defined variable
` [PATCH V7 17/18] tools/perf: Update data_type_cmp and sort__typeoff_sort function to include var_name in comparison
` [PATCH V7 18/18] tools/perf: Set instruction name to be used with insn-stat when using raw instruction

[powerpc:next] BUILD SUCCESS 90e812ac40c4b813fdbafab22f426fe4cdf840a8
 2024-07-13 13:56 UTC 

[powerpc:merge] BUILD SUCCESS 582b0e554593e530b1386eacafee6c412c5673cc
 2024-07-13 13:54 UTC 

[PATCH v3 0/1] Add XSAVE layout description to Core files for debuggers to support varying XSAVE layouts
 2024-07-13 10:42 UTC  (3+ messages)
` [PATCH v3 1/1] x86/elf: Add a new .note section containing xfeatures buffer layout info to x86 core files

[PATCH] PCI: Fix crash during pci_dev hot-unplug on pseries KVM guest
 2024-07-12 17:19 UTC  (5+ messages)

[PATCH 00/13] fs/dax: Fix FS DAX page reference counts
 2024-07-12 15:52 UTC  (9+ messages)
` [PATCH 11/13] huge_memory: Remove dead vmf_insert_pXd code
` [PATCH 13/13] mm: Remove devmap related functions and page table bits

[PATCH v2] printk: Add a short description string to kmsg_dump()
 2024-07-12 14:11 UTC  (6+ messages)

[PATCH] macintosh/therm_windtunnel: fix module unload
 2024-07-12 12:53 UTC  (2+ messages)

[PATCH 1/3] powerpc: Drop clang workaround for builtin constant checks
 2024-07-12 12:53 UTC  (2+ messages)

[PATCH] powerpc: Remove 40x leftovers
 2024-07-12 12:53 UTC  (2+ messages)

[PATCH] Documentation/powerpc: Mention 40x is removed
 2024-07-12 12:53 UTC  (2+ messages)

[PATCH 0/5] powerpc64/bpf: jit support for cpuv4 instructions
 2024-07-12 12:53 UTC  (2+ messages)

[PATCH v2 00/10] Add support for non-interleaved mode in qmc_audio
 2024-07-12 12:27 UTC  (6+ messages)
` [PATCH v2 07/10] soc: fsl: cpm1: qmc: Introduce functions to get a channel from a phandle list

[PATCH] MAINTAINERS: Update FREESCALE SOC DRIVERS and QUICC ENGINE LIBRARY
 2024-07-12 11:14 UTC 

[PATCH 1/2] soc: fsl: qbman: delete bogus device tree fixup in qbman_init_private_mem()
 2024-07-12  9:56 UTC  (2+ messages)
` [PATCH 2/2] soc: fsl: qbman: fix unconditional WARN_ON() on Arm during fsl_qman_probe()

[PATCH v5 0/2] PCI/AER: Handle Advisory Non-Fatal error
 2024-07-12  9:56 UTC  (2+ messages)

[PATCH] vmlinux.lds.h: catch .bss..L* sections into BSS")
 2024-07-12  6:53 UTC  (2+ messages)

[PATCH v12 0/6]arm64: add ARCH_HAS_COPY_MC support
 2024-07-12  5:52 UTC  (4+ messages)
` [PATCH v12 1/6] uaccess: add generic fallback version of copy_mc_to_user()

[PATCH v2 00/60] i2c: reword first drivers according to newest specification
 2024-07-11 14:45 UTC  (9+ messages)
` [PATCH v2 35/60] i2c: opal: reword "
` [PATCH v2 37/60] i2c: pasemi: "
` [PATCH v2 39/60] i2c: powermac: "

[PATCH] PCI: Fix crash during pci_dev hot-unplug on pseries KVM guest
 2024-07-11 19:34 UTC  (4+ messages)

[PATCH v4 17/21] mm/mmap: Drop arch_unmap() call from all archs
 2024-07-11 15:59 UTC  (6+ messages)

[PATCH v4 00/29] arm64: Permission Overlay Extension
 2024-07-11  9:50 UTC  (25+ messages)
` [PATCH v4 13/29] arm64: convert protection key into vm_flags and pgprot values
` [PATCH v4 15/29] arm64: handle PKEY/POE faults
` [PATCH v4 17/29] arm64: implement PKEYS support
` [PATCH v4 18/29] arm64: add POE signal support
` [PATCH v4 22/29] arm64: add Permission Overlay Extension Kconfig
` [PATCH v4 28/29] kselftest/arm64: Add test case for POR_EL0 signal frame records

[PATCH v3 16/16] mm/mmap: Move may_expand_vm() check in mmap_region()
 2024-07-10 21:04 UTC  (6+ messages)

[PowerPC] [PASEMI] Issue with the identification of ATA drives after the of/irq updates 2024-05-29
 2024-07-10 15:53 UTC  (5+ messages)

[PATCH v3 0/3] KVM: Set vcpu->preempted/ready iff scheduled out while running
 2024-07-10 15:51 UTC  (4+ messages)

[PATCH 0/9] AT24 EEPROM MTD Support
 2024-07-10 14:06 UTC  (15+ messages)
` [PATCH 4/9] mtd: devices: add AT24 eeprom support
` [PATCH 5/9] ARM: defconfig: convert to MTD_EEPROM_AT24

[PATCH v2] cxl: Fix possible null pointer dereference in read_handle()
 2024-07-10 13:05 UTC  (3+ messages)
` [v2] "

[PATCH] Documentation/powerpc: Remove retired CPUs from list of supported CPUs
 2024-07-10 10:50 UTC  (2+ messages)

Fwd: [PowerPC] [PASEMI] Issue with the identification of ATA drives after the of/irq updates 2024-05-29
 2024-07-10  3:08 UTC 

[powerpc:merge] BUILD SUCCESS 79d16b1da1df0b2e70193ac54d34a8efc5750e24
 2024-07-09 22:52 UTC 

[PATCH] powerpc-km82xx.c: replace of_node_put with __free improves cleanup
 2024-07-09 14:35 UTC 

[PATCH v2 7/8] mm/x86: Add missing pud helpers
 2024-07-09 19:44 UTC  (3+ messages)

[PATCH AUTOSEL 6.1 21/27] ibmvnic: Add tx check to prevent skb leak
 2024-07-09 16:23 UTC 

[PATCH AUTOSEL 6.6 27/33] ibmvnic: Add tx check to prevent skb leak
 2024-07-09 16:21 UTC 

[PATCH AUTOSEL 6.9 33/40] ibmvnic: Add tx check to prevent skb leak
 2024-07-09 16:19 UTC 

[PATCH 1/4] soc: fsl: qbman: FSL_DPAA depends on COMPILE_TEST
 2024-07-09 15:25 UTC  (9+ messages)

[PATCH v3] PowerPC: Replace kretprobe with rethook
 2024-07-09 13:58 UTC  (4+ messages)

[PATCH] cxl: Fix possible null pointer dereference in read_handle()
 2024-07-09 13:48 UTC  (3+ messages)

[PATCH 0/6] defconfig: drop RT_GROUP_SCHED=y
 2024-07-09 12:45 UTC  (5+ messages)
` [PATCH 6/6] arm: defconfig: drop RT_GROUP_SCHED=y from bcm2855/tegra/omap2plus

[PATCH] powerpc/pseries: Fix scv instruction crash with kexec
 2024-07-09 13:10 UTC  (4+ messages)

WARNING&Oops in v6.6.37 on ppc64lea - Trying to vfree() bad address (00000000453be747)
 2024-07-09 12:52 UTC  (6+ messages)

[PowerPC] [PASEMI] Issue with the identification of ATA drives after the of/irq updates 2024-05-29
 2024-07-09 12:48 UTC  (3+ messages)

[PATCH v4 0/2] PCI hotplug driver fixes
 2024-07-09  6:48 UTC  (2+ messages)

[PATCH v2 1/1] x86/elf: Add a new .note section containing Xfeatures information to x86 core files
 2024-07-09  5:12 UTC  (9+ messages)

[PATCH 0/4] cpufreq: Make cpufreq_driver->exit() return void
 2024-07-09  0:24 UTC  (3+ messages)
` [PATCH 4/4] "

[PATCH v6 0/7] ASoC: fsl-asoc-card: add S/PDIF controller support
 2024-07-08 19:14 UTC  (4+ messages)
` [PATCH v6 5/7] ASoC: dt-bindings: update fsl-asoc-card bindings after imx-spdif merge
` (subset) [PATCH v6 0/7] ASoC: fsl-asoc-card: add S/PDIF controller support

[PATCH 0/2] dt-bindings: soc: add reset syscon for reboot node
 2024-07-08 16:18 UTC  (3+ messages)
` [PATCH 1/2] dt-bindings: soc: fsl: Add fsl,ls1028a-reset for reset syscon node

[PATCH 0/2] dt-bindings: soc: fsl: convert fsl,qe to yaml
 2024-07-08 16:04 UTC  (3+ messages)
` [PATCH 1/2] dt-bindings: soc: fsl: cpm_qe: convert to yaml format

[PATCH 00/20] Simplify of_property_for_each_u32()
 2024-07-08  7:45 UTC  (3+ messages)
` [PATCH 15/20] usb: usb251xb: convert to of_property_for_each_u32_new()

[powerpc:merge] BUILD SUCCESS 76b93049cc60a9f50fe268afa2785be2c4cb0b12
 2024-07-07 18:01 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).