From owner-freebsd-stable@freebsd.org Thu May 10 10:48:03 2018 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 205E3FC47D6 for ; Thu, 10 May 2018 10:48:03 +0000 (UTC) (envelope-from vrwmiller@gmail.com) Received: from mail-vk0-x236.google.com (mail-vk0-x236.google.com [IPv6:2607:f8b0:400c:c05::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ACC707C653 for ; Thu, 10 May 2018 10:48:02 +0000 (UTC) (envelope-from vrwmiller@gmail.com) Received: by mail-vk0-x236.google.com with SMTP id g83-v6so914753vkc.6 for ; Thu, 10 May 2018 03:48:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=+d1jz+5OGwQCnAnvlG8eVXf7Mm5h/0kcPaOo7rKmsfc=; b=oMUCwX8fhwpPE/uiSpNGF+mpYZ0E4IjRoauPQNG5xJbc2oSZrMP3DG0VqLfZC04ZrN 876lUe3XgvVkqS/zYANsTxYKnw3wAqG9I9J9QgIq57/e8Whb+o5IwqemeJsic4Q/cm4C /MubWX7y3/Uzz4nkdhA8CJFasiaSLqqYnX6yLLGRPaJoYvqyL4ogsNCCcYOf4YTZzJmq fS0LKTmA404BoWZ0tCMmdFXpcYX+zAT2+NXHOZbKp+T5X4SzFAhedCPIAPedsWuGapwe ab6fj3UtXjpzTT0EmRKyuPq57mP+YkekfDZeOZ0wly6SwqUO1Ni4tPn9h50teut4MoMo ROuA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=+d1jz+5OGwQCnAnvlG8eVXf7Mm5h/0kcPaOo7rKmsfc=; b=UE1EKFO5K4g+4t40dVmu2zq7+jUlOkGSsYjI0ZgGhLV97c8H9z4S3BXl9FVBSjm5ai glnR4yxHWAccLeUTZK8z7v574zWncTzkJoICe8kXWtOI3NUvcC77v4PXSZleJ9VuLEM3 0nC7pH8ELtcY1QZHhLd9vMVxec/U2ioYYZkxDuLCs8j7xqLCoeWmnbEl6Zf4KLy/CSWp UuNuphhe4/pWYYiN2bR6BHnXyNZx2nvUCYp+HWLe0RA62pp4DfEb3Afu7FjNQDEpbTGZ 8AoHPHSmeUyqUiHPrVj87TXjBXxy/++Yyi9wy5Dzwbh00co/SJkvWWU/IIoVhrH02XKA N9ZQ== X-Gm-Message-State: ALKqPwe7Qb7Ykam48GwHToDe9a+MK6cxYMmEQzskf1m3umjwGxmcUoad Ahm8zftpAP4sRR0UYs/Hzn+fDrAzepTukfMF7Xo= X-Google-Smtp-Source: AB8JxZpbgqEkiFGiOWF0lKUftUMl2QyH1xEuIT8MO4BLJGVZpMs7ojOM82VsnffvXFFC1Lpixdf+S+f6Tze55AtUwoE= X-Received: by 2002:a1f:3195:: with SMTP id x143-v6mr552589vkx.6.1525949282040; Thu, 10 May 2018 03:48:02 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Rick Miller Date: Thu, 10 May 2018 10:47:51 +0000 Message-ID: Subject: Re: lint errors in stable/11 To: "freebsd-stable@freebsd.org" Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 May 2018 10:48:03 -0000 On Thu, May 10, 2018 at 6:35 AM Rick Miller wrote: > Hi all, > > > > Performing a release build via release/release.sh in r331337 of stable/11 > errors citing the lack of lint. It=E2=80=99s understood lint was removed = from > stable/11 so src.conf includes WITHOUT_LINT, but errors persist. As the > code review alludes to[1], lint is irrelevant here. It seems WITHOUT_LINT > may not be the only thing I=E2=80=99m looking for. What is the best appro= ach for > mitigating these errors? > > Here=E2=80=99s the error w/o email munging: =3D=3D=3D> usr.bin/xlint/xlint (all) /data/dists/11.1.9.0-amd64-md/usr/src/contrib/apr/atomic/uni x/builtins.c:71:53: warning: passing 'const void *' to parameter of type 'volatile void *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers] return (void*) __sync_val_compare_and_swap(mem, cmp, with); ^~~ 1 warning generated. =3D=3D=3D> usr.bin/xlint/llib (all) sh: lint: not found --- llib-lposix.ln --- *** [llib-lposix.ln] Error code 127 make[5]: stopped in /data/dists/11.1.9.0-amd64-md/usr/src/usr.bin/xlint/lli= b 1 error make[5]: stopped in /data/dists/11.1.9.0-amd64-md/usr/src/usr.bin/xlint/lli= b =EF=BB=BF > [1] https://reviews.freebsd.org/D13799?id=3D37644 > --=20 Take care Rick Miller