svn commit: r232074 - head/sys/cam/ctl
Alexander Best
arundel at freebsd.org
Fri Feb 24 09:38:07 UTC 2012
On Thu Feb 23 12, Dimitry Andric wrote:
> Author: dim
> Date: Thu Feb 23 21:34:14 2012
> New Revision: 232074
> URL: http://svn.freebsd.org/changeset/base/232074
>
> Log:
> Use a better way to silence unneeded internal declaration warnings in
> several sys/cam/ctl files.
is the clang version in base able to do complete universe builds for i386 and
amd64 without the need for NO_WERROR= and WERROR= now?
cheers.
alex
ps: are there any plans to add support for compiling kernel+userland with clang
tot? maybe this can be accomplished by doing something like
echo "WITH_CLANG_TOT=yes" >> /etc/src.conf
which will turn all -Wformat-invalid-specifier and -Wformat-extra-args errors
into warnings (because clang tot doesn't support -fformat-extensions)?
>
> Suggested by: ed
> Reviewed by: ken
> MFC after: 1 week
>
> Modified:
> head/sys/cam/ctl/ctl_private.h
>
> Modified: head/sys/cam/ctl/ctl_private.h
> ==============================================================================
> --- head/sys/cam/ctl/ctl_private.h Thu Feb 23 21:32:32 2012 (r232073)
> +++ head/sys/cam/ctl/ctl_private.h Thu Feb 23 21:34:14 2012 (r232074)
> @@ -297,7 +297,7 @@ struct ctl_page_index {
> #define CTL_PAGE_DEFAULT 0x02
> #define CTL_PAGE_SAVED 0x03
>
> -static struct ctl_page_index page_index_template[] = {
> +static const struct ctl_page_index page_index_template[] = {
> {SMS_FORMAT_DEVICE_PAGE, 0, sizeof(struct scsi_format_page), NULL,
> CTL_PAGE_FLAG_DISK_ONLY, NULL, NULL},
> {SMS_RIGID_DISK_PAGE, 0, sizeof(struct scsi_rigid_disk_page), NULL,
More information about the svn-src-head
mailing list