mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-28 22:54:05 +08:00
ipv4: annotate a few functions __init in ipconfig.c
A few functions are only used from __init context. So annotate these with __init for consistency and silence the following warnings: WARNING: net/ipv4/built-in.o(.text+0x2a876): Section mismatch in reference from the function ic_bootp_init() to the variable .init.data:bootp_packet_type WARNING: net/ipv4/built-in.o(.text+0x2a907): Section mismatch in reference from the function ic_bootp_cleanup() to the variable .init.data:bootp_packet_type Note: The warnings only appear with CONFIG_DEBUG_SECTION_MISMATCH=y Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
eff0dee546
commit
45e741b890
@ -412,12 +412,12 @@ static struct packet_type rarp_packet_type __initdata = {
|
|||||||
.func = ic_rarp_recv,
|
.func = ic_rarp_recv,
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline void ic_rarp_init(void)
|
static inline void __init ic_rarp_init(void)
|
||||||
{
|
{
|
||||||
dev_add_pack(&rarp_packet_type);
|
dev_add_pack(&rarp_packet_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void ic_rarp_cleanup(void)
|
static inline void __init ic_rarp_cleanup(void)
|
||||||
{
|
{
|
||||||
dev_remove_pack(&rarp_packet_type);
|
dev_remove_pack(&rarp_packet_type);
|
||||||
}
|
}
|
||||||
@ -682,7 +682,7 @@ static void __init ic_bootp_init_ext(u8 *e)
|
|||||||
/*
|
/*
|
||||||
* Initialize the DHCP/BOOTP mechanism.
|
* Initialize the DHCP/BOOTP mechanism.
|
||||||
*/
|
*/
|
||||||
static inline void ic_bootp_init(void)
|
static inline void __init ic_bootp_init(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -696,7 +696,7 @@ static inline void ic_bootp_init(void)
|
|||||||
/*
|
/*
|
||||||
* DHCP/BOOTP cleanup.
|
* DHCP/BOOTP cleanup.
|
||||||
*/
|
*/
|
||||||
static inline void ic_bootp_cleanup(void)
|
static inline void __init ic_bootp_cleanup(void)
|
||||||
{
|
{
|
||||||
dev_remove_pack(&bootp_packet_type);
|
dev_remove_pack(&bootp_packet_type);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user