Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

module: Reformat struct for code style

Using commas to declare struct members makes adding new members to this
struct not as nice with patch management.

Test results linux-modules-kpd succeed [0].

Signed-off-by: Matthew Maurer <mmaurer@google.com>
Reviewed-by: Sami Tolvanen <samitolvanen@google.com>
[mcgrof: add automated test results from kdevops using KPD ]
Link: https://github.com/linux-kdevops/linux-modules-kpd/actions/runs/11420095343 # [0]
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>

authored by

Matthew Maurer and committed by
Luis Chamberlain
2295cf87 d979e3df

+6 -1
+6 -1
kernel/module/internal.h
··· 80 80 unsigned int used_pages; 81 81 #endif 82 82 struct { 83 - unsigned int sym, str, mod, vers, info, pcpu; 83 + unsigned int sym; 84 + unsigned int str; 85 + unsigned int mod; 86 + unsigned int vers; 87 + unsigned int info; 88 + unsigned int pcpu; 84 89 } index; 85 90 }; 86 91