linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH 6/7] net: change type of netns_ipvs->sysctl_sync_qlen_max
       [not found] <alpine.LFD.2.00.1302061115590.1664@ja.ssi.bg>
@ 2013-02-06  9:36 ` Zhang Yanfei
  2013-02-07  1:09   ` Simon Horman
  0 siblings, 1 reply; 4+ messages in thread
From: Zhang Yanfei @ 2013-02-06  9:36 UTC (permalink / raw)
  To: Julian Anastasov
  Cc: Andrew Morton, horms, Linux MM, linux-kernel, kamezawa.hiroyu,
	minchan, mgorman

于 2013年02月06日 17:29, Julian Anastasov 写道:
> 
> 	Hello,
> 
> 	Sorry that I'm writing a private email but I
> deleted your original message by mistake. Your change
> of the sysctl_sync_qlen_max from int to long is may be
> not enough.
> 
> 	net/netfilter/ipvs/ip_vs_ctl.c contains
> proc var "sync_qlen_max" that should be changed to
> sizeof(unsigned long) and updated with proc_doulongvec_minmax.
> 

Thanks for pointing this. I will update this in patch v2.

Thanks
Zhang Yanfei



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 6/7] net: change type of netns_ipvs->sysctl_sync_qlen_max
  2013-02-06  9:36 ` [PATCH 6/7] net: change type of netns_ipvs->sysctl_sync_qlen_max Zhang Yanfei
@ 2013-02-07  1:09   ` Simon Horman
  2013-02-07  1:50     ` Zhang Yanfei
  0 siblings, 1 reply; 4+ messages in thread
From: Simon Horman @ 2013-02-07  1:09 UTC (permalink / raw)
  To: Zhang Yanfei
  Cc: Julian Anastasov, Andrew Morton, Linux MM, linux-kernel,
	kamezawa.hiroyu, minchan, mgorman

On Wed, Feb 06, 2013 at 05:36:12PM +0800, Zhang Yanfei wrote:
> 于 2013年02月06日 17:29, Julian Anastasov 写道:
> > 
> > 	Hello,
> > 
> > 	Sorry that I'm writing a private email but I
> > deleted your original message by mistake. Your change
> > of the sysctl_sync_qlen_max from int to long is may be
> > not enough.
> > 
> > 	net/netfilter/ipvs/ip_vs_ctl.c contains
> > proc var "sync_qlen_max" that should be changed to
> > sizeof(unsigned long) and updated with proc_doulongvec_minmax.
> > 
> 
> Thanks for pointing this. I will update this in patch v2.

Hi Zhang,

Thanks for helping to keep IPVS up to date.

It seems to me that include/net/ip_vs.h:sysctl_sync_qlen_max()
and its call site, net/netfilter/ipvs/ip_vs_sync.c:sb_queue_tail()
may also need to be updated.

Could you look at including that in v2 too?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 6/7] net: change type of netns_ipvs->sysctl_sync_qlen_max
  2013-02-07  1:09   ` Simon Horman
@ 2013-02-07  1:50     ` Zhang Yanfei
  0 siblings, 0 replies; 4+ messages in thread
From: Zhang Yanfei @ 2013-02-07  1:50 UTC (permalink / raw)
  To: Simon Horman
  Cc: Julian Anastasov, Andrew Morton, Linux MM, linux-kernel,
	kamezawa.hiroyu, minchan, mgorman

于 2013年02月07日 09:09, Simon Horman 写道:
> On Wed, Feb 06, 2013 at 05:36:12PM +0800, Zhang Yanfei wrote:
>> 于 2013年02月06日 17:29, Julian Anastasov 写道:
>>>
>>> 	Hello,
>>>
>>> 	Sorry that I'm writing a private email but I
>>> deleted your original message by mistake. Your change
>>> of the sysctl_sync_qlen_max from int to long is may be
>>> not enough.
>>>
>>> 	net/netfilter/ipvs/ip_vs_ctl.c contains
>>> proc var "sync_qlen_max" that should be changed to
>>> sizeof(unsigned long) and updated with proc_doulongvec_minmax.
>>>
>>
>> Thanks for pointing this. I will update this in patch v2.
> 
> Hi Zhang,
> 
> Thanks for helping to keep IPVS up to date.
> 
> It seems to me that include/net/ip_vs.h:sysctl_sync_qlen_max()
> and its call site, net/netfilter/ipvs/ip_vs_sync.c:sb_queue_tail()
> may also need to be updated.
> 
> Could you look at including that in v2 too?

OK. I will update it.

Thanks
Zhang


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 6/7] net: change type of netns_ipvs->sysctl_sync_qlen_max
  2013-02-06  5:11 [PATCH 0/7] mm: fix types for some functions and variables in case of overflow Zhang Yanfei
@ 2013-02-06  5:20 ` Zhang Yanfei
  0 siblings, 0 replies; 4+ messages in thread
From: Zhang Yanfei @ 2013-02-06  5:20 UTC (permalink / raw)
  To: Andrew Morton, mgorman, minchan, kamezawa.hiroyu, wensong, horms, ja
  Cc: Linux MM, linux-kernel

This member of struct netns_ipvs is calculated from nr_free_buffer_pages
so change its type to unsigned long in case of overflow.

Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
---
 include/net/ip_vs.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h
index 68c69d5..66e6c01 100644
--- a/include/net/ip_vs.h
+++ b/include/net/ip_vs.h
@@ -966,7 +966,7 @@ struct netns_ipvs {
 	int			sysctl_snat_reroute;
 	int			sysctl_sync_ver;
 	int			sysctl_sync_ports;
-	int			sysctl_sync_qlen_max;
+	unsigned long		sysctl_sync_qlen_max;
 	int			sysctl_sync_sock_size;
 	int			sysctl_cache_bypass;
 	int			sysctl_expire_nodest_conn;
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-02-07  1:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <alpine.LFD.2.00.1302061115590.1664@ja.ssi.bg>
2013-02-06  9:36 ` [PATCH 6/7] net: change type of netns_ipvs->sysctl_sync_qlen_max Zhang Yanfei
2013-02-07  1:09   ` Simon Horman
2013-02-07  1:50     ` Zhang Yanfei
2013-02-06  5:11 [PATCH 0/7] mm: fix types for some functions and variables in case of overflow Zhang Yanfei
2013-02-06  5:20 ` [PATCH 6/7] net: change type of netns_ipvs->sysctl_sync_qlen_max Zhang Yanfei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).