Skip to content

Commit

Permalink
[IPVS]: ipv4_table --> ipvs_ipv4_table
Browse files Browse the repository at this point in the history
Fix conflict with symbol of same name in global
namespace.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller authored and David S. Miller committed Aug 29, 2005
1 parent c59eab4 commit bf0ff9e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions net/ipv4/ipvs/ip_vs_ctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1598,7 +1598,7 @@ static ctl_table vs_table[] = {
{ .ctl_name = 0 }
};

static ctl_table ipv4_table[] = {
static ctl_table ipvs_ipv4_table[] = {
{
.ctl_name = NET_IPV4,
.procname = "ipv4",
Expand All @@ -1613,7 +1613,7 @@ static ctl_table vs_root_table[] = {
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = ipv4_table,
.child = ipvs_ipv4_table,
},
{ .ctl_name = 0 }
};
Expand Down
4 changes: 2 additions & 2 deletions net/ipv4/ipvs/ip_vs_lblc.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ static ctl_table vs_table[] = {
{ .ctl_name = 0 }
};

static ctl_table ipv4_table[] = {
static ctl_table ipvs_ipv4_table[] = {
{
.ctl_name = NET_IPV4,
.procname = "ipv4",
Expand All @@ -146,7 +146,7 @@ static ctl_table lblc_root_table[] = {
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = ipv4_table
.child = ipvs_ipv4_table
},
{ .ctl_name = 0 }
};
Expand Down
4 changes: 2 additions & 2 deletions net/ipv4/ipvs/ip_vs_lblcr.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ static ctl_table vs_table[] = {
{ .ctl_name = 0 }
};

static ctl_table ipv4_table[] = {
static ctl_table ipvs_ipv4_table[] = {
{
.ctl_name = NET_IPV4,
.procname = "ipv4",
Expand All @@ -335,7 +335,7 @@ static ctl_table lblcr_root_table[] = {
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = ipv4_table
.child = ipvs_ipv4_table
},
{ .ctl_name = 0 }
};
Expand Down

0 comments on commit bf0ff9e

Please sign in to comment.