On Sat, 17 May 2008, Oleg Nesterov wrote:The only reason I like that better is that it makes me nervous when one re-initializes the whole flags field. So your original 3/3 patch - q->flags &= ~SIGQUEUE_PREALLOC; + q->flags = SIGQUEUE_CANCELLED; /* clears SIGQUEUE_PREALLOC */ just makes me go "Hmm, what about all the other flag bits?" Now, admittedly, there are currently (with your patch) just two SIGQUEUE_xyz bits, so by just doing that single assignment, you really only modify the two bits you want to modify. But maybe that will change. So I'd prefer to either write it as q->flags &= ~SIGQUEUE_PREALLOC; q->flags |= SIGQUEUE_CANCELLED; or to use bitfields, or to do something else to make it safe in the presense of multiple bits. Your alternate patch obviously doesn't have that issue, since it just sets the single bit. But apart from that issue, I have absolutely no preferences either way. You're effectively the maintainer in this area, you get to choose. Linus --
| Tarkan Erimer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
| James Bottomley | Re: Announce: Linux-next (Or Andrew's dream :-)) |
| Trent Piepho | Re: [PATCH] fakephp: Allocate PCI resources before adding the device |
| Antonio Almeida | HTB accuracy for high speed |
| David Miller | [GIT]: Networking |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| Jarek Poplawski | [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
git: | |
