projects
/
linux.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75f49c3
)
MIPS: export __cmpxchg_small()
author
David Sterba <dsterba@suse.com>
Tue, 22 Oct 2024 14:21:05 +0000
(16:21 +0200)
committer
David Sterba <dsterba@suse.com>
Wed, 23 Oct 2024 16:10:24 +0000
(18:10 +0200)
Export the symbol __cmpxchg_small() for btrfs.ko that uses it to store
blk_status_t, which is u8. Reported by LKP:
>> ERROR: modpost: "__cmpxchg_small" [fs/btrfs/btrfs.ko] undefined!
Patch using the cmpxchg() https://lore.kernel.org/linux-btrfs/
1d4f72f7fee285b2ddf4bf62b0ac0fd89def5417
.
1728575379
.git.naohiro.aota@wdc.com/
Link:
https://lore.kernel.org/all/20241016134919.GO1609@suse.cz/
Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: David Sterba <dsterba@suse.com>
arch/mips/kernel/cmpxchg.c
patch
|
blob
|
history
diff --git
a/arch/mips/kernel/cmpxchg.c
b/arch/mips/kernel/cmpxchg.c
index e974a4954df8530b5bb90633b889db276860bb48..c371def2302d27080d38cc5b56caed4215d4ae39 100644
(file)
--- a/
arch/mips/kernel/cmpxchg.c
+++ b/
arch/mips/kernel/cmpxchg.c
@@
-102,3
+102,4
@@
unsigned long __cmpxchg_small(volatile void *ptr, unsigned long old,
return old;
}
}
+EXPORT_SYMBOL(__cmpxchg_small);