Re: svn commit: r232183 - head/sys/kern

2012-02-28 Thread Bruce Evans
On Tue, 28 Feb 2012, Alexander Best wrote: On Sun Feb 26 12, Jilles Tjoelker wrote: Log: Fix fchmod() and fchown() on fifos. The new fifo implementation in r232055 broke fchmod() and fchown() on fifos. Postfix needs this. clang seems to have a problem with this commit: usr/subversion-

Re: svn commit: r232183 - head/sys/kern

2012-02-28 Thread Alexander Best
On Sun Feb 26 12, Jilles Tjoelker wrote: > Author: jilles > Date: Sun Feb 26 15:14:29 2012 > New Revision: 232183 > URL: http://svn.freebsd.org/changeset/base/232183 > > Log: > Fix fchmod() and fchown() on fifos. > > The new fifo implementation in r232055 broke fchmod() and fchown() on fifo

Re: svn commit: r232183 - head/sys/kern

2012-02-26 Thread Giovanni Trematerra
On Sun, Feb 26, 2012 at 10:12 PM, Ed Schouten wrote: > Hi Jilles, > > * Jilles Tjoelker , 20120226 16:14: >> +static int >> +pipe_chmod(fp, mode, active_cred, td) >> +     struct file *fp; >> +     mode_t mode; >> +     struct ucred *active_cred; >> +     struct thread *td; >> +{ >> +     struct p

Re: svn commit: r232183 - head/sys/kern

2012-02-26 Thread Ed Schouten
Hi Jilles, * Jilles Tjoelker , 20120226 16:14: > +static int > +pipe_chmod(fp, mode, active_cred, td) > + struct file *fp; > + mode_t mode; > + struct ucred *active_cred; > + struct thread *td; > +{ > + struct pipe *cpipe; > + int error; > + > + cpipe = fp->f_data; > +

Re: svn commit: r232183 - head/sys/kern

2012-02-26 Thread Giovanni Trematerra
On Sun, Feb 26, 2012 at 4:14 PM, Jilles Tjoelker wrote: > Author: jilles > Date: Sun Feb 26 15:14:29 2012 > New Revision: 232183 > URL: http://svn.freebsd.org/changeset/base/232183 > > Log: >  Fix fchmod() and fchown() on fifos. > >  The new fifo implementation in r232055 broke fchmod() and fchown