From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Graf Subject: Re: [PATCH 2/11] [NET] Convert sk_zapped into SOCK_ZAPPED flag Date: Wed, 9 Mar 2005 21:23:53 +0100 Message-ID: <20050309202353.GU31837@postel.suug.ch> References: <20050309194521.GH31837@postel.suug.ch> <20050309194711.GJ31837@postel.suug.ch> <422F5461.4080008@trash.net> <20050309195649.GT31837@postel.suug.ch> <422F571E.2020708@trash.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "David S. Miller" , netdev@oss.sgi.com To: Patrick McHardy Content-Disposition: inline In-Reply-To: <422F571E.2020708@trash.net> Sender: netdev-bounce@oss.sgi.com Errors-to: netdev-bounce@oss.sgi.com List-Id: netdev.vger.kernel.org * Patrick McHardy <422F571E.2020708@trash.net> 2005-03-09 21:05 > Thomas Graf wrote: > >* Patrick McHardy <422F5461.4080008@trash.net> 2005-03-09 20:54 > >> > >>What about volatile ? sock_set_flag() uses __set_bit(), so its not > >>the same. > > > > > >I thought about this for a while but couldn't find a reason > >why it shouldn't work. Actually I don't even see any reason for > >having sk_zapped be volatile. > > You're probably right. I believe this piece of code from 2.4 is the > reason for it beeing volatile: > > #ifdef TCP_DEBUG > if (sk->zapped) { > printk(KERN_DEBUG "TCP: double destroy sk=%p\n", sk); > sock_hold(sk); > } > sk->zapped = 1; > #endif Yes, this makes sense. I haven't spotted any places in 2.6 where any of the flags I've converted would suffer from a reordering. Since all the flags have been chars the missing atomicy shouldn't be an issue either.