Re: [PATCH v6 00/18] Implement DWARF modversions

2024-12-10 Thread Neal Gompa
On Mon, Nov 25, 2024 at 10:34 AM Sami Tolvanen wrote: > > On Mon, Nov 25, 2024 at 4:41 PM Miguel Ojeda > wrote: > > > > On Mon, Nov 25, 2024 at 2:29 PM Neal Gompa wrote: > > > > > > As my Acked-by was removed, I'm sorry to say that there is no point

Re: [PATCH v6 00/18] Implement DWARF modversions

2024-11-25 Thread Neal Gompa
On Thu, Nov 21, 2024 at 3:42 PM Sami Tolvanen wrote: > > Hi, > > Here's v6 of the DWARF modversions series. The main motivation is > modversions support for Rust, which is important for distributions > like Android that are about to ship Rust kernel modules. Per Luis' > request [1], v2 dropped the

Re: [PATCH v5 01/19] scripts: move genksyms crc32 implementation to a common include

2024-11-13 Thread Neal Gompa
On Wed, Nov 13, 2024 at 2:35 PM Luis Chamberlain wrote: > > On Wed, Nov 13, 2024 at 09:04:51AM -0500, Neal Gompa wrote: > > On Mon, Nov 11, 2024 at 11:06 PM Masahiro Yamada > > wrote: > > > > > > On Thu, Oct 31, 2024 at 2:01 AM Sami Tolvanen > > &

Re: [PATCH v5 01/19] scripts: move genksyms crc32 implementation to a common include

2024-11-13 Thread Neal Gompa
On Mon, Nov 11, 2024 at 11:06 PM Masahiro Yamada wrote: > > On Thu, Oct 31, 2024 at 2:01 AM Sami Tolvanen wrote: > > > > Suggested-by: Petr Pavlu > > Signed-off-by: Sami Tolvanen > > Acked-by: Neal Gompa > > Does this Ack add any value? > > Acked

Re: [PATCH v3 00/20] Implement DWARF modversions

2024-09-28 Thread Neal Gompa
/examples/kabi.h > create mode 100644 scripts/gendwarfksyms/examples/kabi_ex0.c > create mode 100644 scripts/gendwarfksyms/examples/kabi_ex1.c > create mode 100644 scripts/gendwarfksyms/examples/kabi_ex2.c > create mode 100644 scripts/gendwarfksyms/examples/kabi_rules.c > create mode 100644 scripts/gendwarfksyms/examples/symbolptr.c > create mode 100644 scripts/gendwarfksyms/gendwarfksyms.c > create mode 100644 scripts/gendwarfksyms/gendwarfksyms.h > create mode 100644 scripts/gendwarfksyms/kabi.c > create mode 100644 scripts/gendwarfksyms/symbols.c > create mode 100644 scripts/gendwarfksyms/types.c > create mode 100644 scripts/include/crc32.h > > > base-commit: ef545bc03a65438cabe87beb1b9a15b0ffcb6ace > -- > 2.46.0.792.g87dc391469-goog > This patch set looks fairly reasonable. Acked-by: Neal Gompa -- 真実はいつも一つ!/ Always, there's only one truth!

Re: [PATCH v5 00/16] Extended MODVERSIONS Support

2024-09-28 Thread Neal Gompa
module/internal.h| 18 +- > kernel/module/main.c| 647 > kernel/module/version.c | 45 +++ > scripts/export_report.pl| 17 +- > scripts/mod/modpost.c | 39 +- > 6 files changed, 628 insertions(+), 161 deletions(-) > > -- > 2.46.1.824.gd892dcdcdd-goog > > The series looks straightforward and reasonable to me. Acked-by: Neal Gompa -- 真実はいつも一つ!/ Always, there's only one truth!

Re: [PATCH 00/15] Implement MODVERSIONS for Rust

2024-07-31 Thread Neal Gompa
On Friday, July 26, 2024 5:05:22 PM EDT Sami Tolvanen wrote: > Hi Petr, > > On Mon, Jul 22, 2024 at 8:20 AM Petr Pavlu wrote: > > From my perspective, I'm okay if gendwarfksyms doesn't provide > > functionality to compare a new object file with its reference symtypes > > file. > > > > As mention

Re: [RFC v3 0/2] vfs / btrfs: add support for ustat()

2021-04-16 Thread Neal Gompa
On Thu, Apr 15, 2021 at 2:29 PM Luis Chamberlain wrote: > > On Thu, Apr 15, 2021 at 02:17:58PM -0400, Josef Bacik wrote: > > There's a lot of larger things that need to > > be addressed in general to support the volume approach inside file systems > > that is going to require a lot of work inside

Re: [PATCH v2 00/10] fsdax,xfs: Add reflink&dedupe support for fsdax

2021-03-13 Thread Neal Gompa
On Sat, Mar 13, 2021 at 8:09 AM Adam Borowski wrote: > > On Wed, Mar 10, 2021 at 02:26:43PM +, Matthew Wilcox wrote: > > On Wed, Mar 10, 2021 at 08:21:59AM -0600, Goldwyn Rodrigues wrote: > > > DAX on btrfs has been attempted[1]. Of course, we could not > > > > But why? A completeness fetish?

Re: [PATCH v2 00/10] fsdax,xfs: Add reflink&dedupe support for fsdax

2021-03-11 Thread Neal Gompa
On Wed, Mar 10, 2021 at 7:53 PM Dan Williams wrote: > > On Wed, Mar 10, 2021 at 6:27 AM Matthew Wilcox wrote: > > > > On Wed, Mar 10, 2021 at 08:21:59AM -0600, Goldwyn Rodrigues wrote: > > > On 13:02 10/03, Matthew Wilcox wrote: > > > > On Wed, Mar 10, 202

Re: [PATCH v2 00/10] fsdax,xfs: Add reflink&dedupe support for fsdax

2021-03-10 Thread Neal Gompa
On Wed, Mar 10, 2021 at 8:02 AM Matthew Wilcox wrote: > > On Wed, Mar 10, 2021 at 07:30:41AM -0500, Neal Gompa wrote: > > Forgive my ignorance, but is there a reason why this isn't wired up to > > Btrfs at the same time? It seems weird to me that adding a feature > &

Re: [PATCH v2 00/10] fsdax,xfs: Add reflink&dedupe support for fsdax

2021-03-10 Thread Neal Gompa
On Thu, Feb 25, 2021 at 7:23 PM Shiyang Ruan wrote: > > This patchset is attempt to add CoW support for fsdax, and take XFS, > which has both reflink and fsdax feature, as an example. > > Changes from V1: > - Factor some helper functions to simplify dax fault code > - Introduce iomap_apply2() fo

Issue: With an OverlayFS that has Btrfs as the upper layer, removal of directories silently fails

2015-08-21 Thread Neal Gompa
/bugzilla.redhat.com/show_bug.cgi?id=1255512 -- Neal Gompa (FAS: ngompa) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/