diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2005-10-04 22:42:15 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-10-04 22:42:15 -0700 |
commit | 8eea00a44d9f493869f8d30b72e3ed18475be556 (patch) | |
tree | 0f24f83ffc60cc821ecfea362c40f44572ba6d5e /net/ipv4 | |
parent | f4a19a56e38442e434b8809915d756469f1e89a2 (diff) | |
download | op-kernel-dev-8eea00a44d9f493869f8d30b72e3ed18475be556.zip op-kernel-dev-8eea00a44d9f493869f8d30b72e3ed18475be556.tar.gz |
[IPVS]: fix sparse gfp nocast warnings
From: Randy Dunlap <rdunlap@xenotime.net>
Fix implicit nocast warnings in ip_vs code:
net/ipv4/ipvs/ip_vs_app.c:631:54: warning: implicit cast to nocast type
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/ipvs/ip_vs_app.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipvs/ip_vs_app.c b/net/ipv4/ipvs/ip_vs_app.c index 6e092da..b942ff3 100644 --- a/net/ipv4/ipvs/ip_vs_app.c +++ b/net/ipv4/ipvs/ip_vs_app.c @@ -604,7 +604,7 @@ static struct file_operations ip_vs_app_fops = { /* * Replace a segment of data with a new segment */ -int ip_vs_skb_replace(struct sk_buff *skb, int pri, +int ip_vs_skb_replace(struct sk_buff *skb, unsigned int __nocast pri, char *o_buf, int o_len, char *n_buf, int n_len) { struct iphdr *iph; |