mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-27 03:47:43 +00:00
sections, ipvs: Remove useless __read_mostly for ipvs genl_ops
const __read_mostly does not make any sense, because const data is already read-only. Remove the __read_mostly for the ipvs genl_ops. This avoids a LTO section conflict compile problem. Cc: Wensong Zhang <wensong@linux-vs.org> Cc: Simon Horman <horms@verge.net.au> Cc: Patrick McHardy <kaber@trash.net> Cc: lvs-devel@vger.kernel.org Signed-off-by: Andi Kleen <ak@linux.intel.com> Signed-off-by: Simon Horman <horms@verge.net.au>
This commit is contained in:
parent
0768b3b3d2
commit
c61b0c1328
@ -3580,7 +3580,7 @@ out:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static const struct genl_ops ip_vs_genl_ops[] __read_mostly = {
|
static const struct genl_ops ip_vs_genl_ops[] = {
|
||||||
{
|
{
|
||||||
.cmd = IPVS_CMD_NEW_SERVICE,
|
.cmd = IPVS_CMD_NEW_SERVICE,
|
||||||
.flags = GENL_ADMIN_PERM,
|
.flags = GENL_ADMIN_PERM,
|
||||||
|
Loading…
Reference in New Issue
Block a user