Daniel Sedlak <daniel@xxxxxxxxxx> wrote:
Since module is a macro, if we would allow syntax in the macro like:It seems to me that the rustfmt.toml in the kernel, don't have a max width for
authors: ["author1", "author2", ...]
I think we could fight with the code formatting, because when it comes
to the rust macros, rustfmt is often very confused and we could end up
with variations like:
authors: ["author1", "author2",
"author3"]
or
authors: [
"author1",
"author2",
]
and rustfmt would be totally ok with both of them.
line. Are you sure that the rustfmt would broke the line for big enough lines?
I think accepting several "author" fields is the best one because itIf you (daniel and miguel) are ok with repeat the `author` field and think that
mirrors the C API, where in C when you want to specify more authors you
just repeat the MODULE_AUTHOR("author<N>") macro.
this is the better option I is happy to make this change.
I was run the follow command:
grep -rwo 'MODULE_AUTHOR' . | awk -F: '{count[$1]++} END {for (file in count) if (count[file] > 1) print file, count[file]}' | sort -k2 -n > res
for found the modules with more than one MODULE_AUTHOR.
I see that the maximum of MODULE_AUTHOR that is contains in a module is 11.