Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Sep 2016 21:59:32 +0200
From:      Andreas Tobler <andreast@FreeBSD.org>
To:        Mateusz Guzik <mjg@FreeBSD.org>, src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   Re: svn commit: r306272 - head/sys/sys
Message-ID:  <c741a93f-80c4-969c-a138-955550c93cec@FreeBSD.org>
In-Reply-To: <201609231647.u8NGlCYF045234@repo.freebsd.org>
References:  <201609231647.u8NGlCYF045234@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On 23.09.16 18:47, Mateusz Guzik wrote:
> Author: mjg
> Date: Fri Sep 23 16:47:12 2016
> New Revision: 306272
> URL: https://svnweb.freebsd.org/changeset/base/306272
>
> Log:
>   fd: hide fd_modified under CAPABILITIES
>
>   It has no use without it and is now less error prone.
>
> Modified:
>   head/sys/sys/filedesc.h
>
> Modified: head/sys/sys/filedesc.h
> ==============================================================================
> --- head/sys/sys/filedesc.h	Fri Sep 23 16:22:03 2016	(r306271)
> +++ head/sys/sys/filedesc.h	Fri Sep 23 16:47:12 2016	(r306272)
> @@ -229,12 +229,14 @@ fdeget_locked(struct filedesc *fdp, int
>  	return (fde);
>  }
>
> +#ifdef CAPABILITIES
>  static __inline bool
>  fd_modified(struct filedesc *fdp, int fd, seq_t seq)
>  {
>
>  	return (!seq_consistent(fd_seq(fdp->fd_files, fd), seq));
>  }
> +#endif
>
>  /* cdir/rdir/jdir manipulation functions. */
>  void	pwd_chdir(struct thread *td, struct vnode *vp);

I think this breaks kernel builds:

/usr/src/sys/modules/cloudabi/../../compat/cloudabi/cloudabi_fd.c:482:14: 
error: implicit declaration of function 'fd_modified' is invalid in C99 
[-Werror,-Wimplicit-function-declaration]
                 modified = fd_modified(fdp, uap->fd, seq);
                            ^
1 error generated.
*** [cloudabi_fd.o] Error code 1

Andreas



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?c741a93f-80c4-969c-a138-955550c93cec>