correct suser flag usage

2012-04-11 Thread Mike Belopuhov
guenther@ has pointed out that sometimes suser is passed an incorrect flags argument. Currently, there's only one flag that's defined: SUSER_NOACCT (0x1). Unfortunately it aligns too well with AFORK flag used with p_acflag. This diff cleans up the tree. OK? Index: dev/pci/if_san_obsd.c

Re: correct suser flag usage

2012-04-11 Thread Philip Guenther
On Wed, 11 Apr 2012, Mike Belopuhov wrote: guenther@ has pointed out that sometimes suser is passed an incorrect flags argument. Currently, there's only one flag that's defined: SUSER_NOACCT (0x1). Unfortunately it aligns too well with AFORK flag used with p_acflag. This diff cleans up