[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] xen: remove the usage of the P ar option


  • To: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
  • From: Roger Pau Monné <roger.pau@xxxxxxxxxx>
  • Date: Thu, 31 Dec 2020 17:05:06 +0100
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=citrix.com; dmarc=pass action=none header.from=citrix.com; dkim=pass header.d=citrix.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=ocPwi+vkVZuIUceVT9eof+2hSuosuCE0FhHhKbN7xGg=; b=Q5MWGZrsFqg0Lsk4ToStkOwnTC8W9uZHTjl3aRl64rl03oBWuXSePAGNtwE17PXO+BvAT7ehelIQMzPiiuZ2JMHZLgZxJ7ZCBqClG7R3iXf4OAtKRQnFXV+RQPMhG73lMD87Kut6HUSAdXke89c6WO3/GC32JIX8wnM449RlvnGpcu6CykHkehy5I61FpLRTOKbIr9o90b9u0ZR1YWzyVNMHbIZCxrejzDXhr3QNmzgD2AqugTppERtML330xDq7vTflX5gmUvu8Ss81Bz1q3rvgkzt5Sm91GABfQx3CsZfs51RE6mkqvzwh92bVDaY2JHxUTC0J0YtR9vHoTQ+75Q==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=HNkEs07R8iQNu9uOc+y9xZkuZ41Fb08Op5GhweaeOlvX+wZwz/2CNQrVSq8a0LAwd4rqZvmEksH4vJ+sVOpxqTGWLnNByTBhHg8W0sRCqDvmLUrYqMP9HKkECfvQDh5a1w8YTIRh70sQa2f1STr/32vOl1xhyRJfBQAMYBj3zBrEYCwJv9/ADvA5cqub+mAqaR8kEQLJwJ1Dzg1rO5UmYbOJwLfoImEDlTpJAHkw+t0DFF+hd9wecuavt6gaHm3nT8U4Ew0PnX/6VEbzaK3IWqVDdLJUWKhx12nFj7NUtSBTyM4qPi+5vuXg4C97hc4VqLA19neJGYBsw4Hbmyq24g==
  • Authentication-results: esa2.hc3370-68.iphmx.com; dkim=pass (signature verified) header.i=@citrix.onmicrosoft.com
  • Cc: <xen-devel@xxxxxxxxxxxxxxxxxxxx>, George Dunlap <george.dunlap@xxxxxxxxxx>, Ian Jackson <iwj@xxxxxxxxxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Julien Grall <julien@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>
  • Delivery-date: Thu, 31 Dec 2020 16:05:28 +0000
  • Ironport-sdr: 7KHSxq11SODM/6leymnCbThBVMSB93WwaIpalXUWBTyKqqLC5p+FjVCak+xCaVpvhoB4LT61Vf EDiO4qTk6ppfDW6q+QUOGK8EDMbV3z1OKyMWr3coQyEU0tWdvjbE1CXnC9QKDI3Wnhgkk9h37r Fr4CWriEKheHkAz4+ECl6gwVOPXlr2Bgx0IWif2Lkwl50Q+CXZXwuAl497Wlg+kaaJSqDUEuuT 2QQmRmVNqOhr6/mFd5p7QFqO3Kp4xderc/Hr1qK35eg0TGBA+8tBXVXedzcRrygUYySLW/vmDh t/k=
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

On Thu, Dec 31, 2020 at 03:46:50PM +0000, Andrew Cooper wrote:
> On 31/12/2020 09:20, Roger Pau Monné wrote:
> > On Wed, Dec 30, 2020 at 06:32:58PM +0000, Andrew Cooper wrote:
> >> On 30/12/2020 17:34, Roger Pau Monne wrote:
> >>> It's not part of the POSIX standard [0] and as such non GNU ar
> >>> implementations don't usually have it.
> >>>
> >>> It's not relevant for the use case here anyway, as the archive file is
> >>> recreated every time due to the rm invocation before the ar call. No
> >>> file name matching should happen so matching using the full path name
> >>> or a relative one should yield the same result.
> >>>
> >>> This fixes the build on FreeBSD.
> >>>
> >>> Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx>
> >> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, although...
> >>
> >> We really need some kind of BSD build in CI.  This kind of breakage
> >> shouldn't get into master to begin with.
> > Fully agree. I'm not that familiar with gitlab CI, but since we have
> > our own runners there, could we also launch VMs instead of just using
> > containers?
> >
> > It might be easier to integrate with osstest in the future, since
> > FreeBSD has now switched to git.
> >
> >>> [0] https://pubs.opengroup.org/onlinepubs/9699919799/utilities/ar.html
> >>> ---
> >>> I'm unsure whether the r and s options are also needed, since they
> >>> seem to only be relevant when updating a library, and Xen build system
> >>> always removes the old library prior to any ar call.
> >> ... I think r should be dropped, because we're not replacing any files. 
> >> However, I expect the index file is still relevant, because without it,
> >> you've got to perform an O(n) search through the archive to find a file.
> > Right, the description of 's' between opengroup and the Linux man page
> > seems to be slightly different. From the opengroup description it seems
> > like s should be used to force the generation of a symbol table when
> > no changes are made to the archive, but otherwise ar should already
> > generate such symbol table.
> 
> Ok - are you happy for me to commit with dropping the r and s?

So after testing this, I think we need at least the r option, as we
want to add new files to the archive (regardless of whether it exists
or not). That seems to be mandatory on FreeBSD, as calling 'ar c' is
not valid.

I think s can be dropped, as ar will generate the symbol table by
default unless S is specified. s should just be used to force the
generation of a symbol table when not adding files and the archive has
been stripped AFAICT.

If so would you mind adding:

"While there also drop the s option, as ar will already generate a
symbol table by default when creating the archive."

To the commit message if you end up dropping s?

Thanks, Roger.



 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.