* [PATCH 0/1] pseudo 1.5.1
@ 2013-02-27 21:19 Peter Seebach
2013-02-27 21:19 ` [PATCH 1/1] Update pseudo to 1.5.1 Peter Seebach
2013-02-28 4:53 ` [PATCH 0/1] pseudo 1.5.1 Saul Wold
0 siblings, 2 replies; 3+ messages in thread
From: Peter Seebach @ 2013-02-27 21:19 UTC (permalink / raw)
To: openembedded-core
It turns out that I forgot the part where it would be useful to be
able to temporarily suppress the suppression of fsync()-type calls.
Also the documentation had bitrotted (no references to FASTOP or to
the fsync stuff, or to some other changes), so I fixed a few obvious
gaps.
This should have no immediate functional change on anything in oe-core,
but it allows for specifying
PSEUDO_ALLOW_FSYNC=1 <command>
and getting fsync behavior from that command.
There's also a performance improvement in the case where NDEBUG is
defined, which is "never" in our context.
This is a lowish-priority change for oe-core, and in any event I don't
believe the tarballs are up on the Yocto servers yet, but we need it
internally and paperwork's easier if I submit it and then backport it.
(I do recommmend it, though, because this makes it a LOT easier to
check whether the fsync behavior is affecting something.)
The following changes since commit 8e69f0ea42505e8f703893e18d73658b83d3b046:
Constantin Musca (1):
augeas: change SRC_URI
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib seebs/pseudo151
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=seebs/pseudo151
Peter Seebach (1):
Update pseudo to 1.5.1
.../pseudo/{pseudo_1.5.bb => pseudo_1.5.1.bb} | 4 ++--
meta/recipes-devtools/pseudo/pseudo_git.bb | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
rename meta/recipes-devtools/pseudo/{pseudo_1.5.bb => pseudo_1.5.1.bb} (52%)
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH 1/1] Update pseudo to 1.5.1
2013-02-27 21:19 [PATCH 0/1] pseudo 1.5.1 Peter Seebach
@ 2013-02-27 21:19 ` Peter Seebach
2013-02-28 4:53 ` [PATCH 0/1] pseudo 1.5.1 Saul Wold
1 sibling, 0 replies; 3+ messages in thread
From: Peter Seebach @ 2013-02-27 21:19 UTC (permalink / raw)
To: openembedded-core
pseudo 1.5's enable-force-async works great, unless you use a host
where, inexplicably, stat(2) reports inconsistent and changing values
for a file's size or times for some time unless a file has been fsynced,
in which case you might want a way to cause an fsync to work.
Also noticed that some recent changes never made it into the docs, so
I did a little cleanup there. And changed the way NDEBUG suppresses
pseudo's debug messages, so arguments to them with possible side
effects (like calls into functions in another translation unit) can be
omitted, which should drastically reduce computational time if anyone
ever uses NDEBUG.
Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
---
.../pseudo/{pseudo_1.5.bb => pseudo_1.5.1.bb} | 4 ++--
meta/recipes-devtools/pseudo/pseudo_git.bb | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
rename meta/recipes-devtools/pseudo/{pseudo_1.5.bb => pseudo_1.5.1.bb} (52%)
diff --git a/meta/recipes-devtools/pseudo/pseudo_1.5.bb b/meta/recipes-devtools/pseudo/pseudo_1.5.1.bb
similarity index 52%
rename from meta/recipes-devtools/pseudo/pseudo_1.5.bb
rename to meta/recipes-devtools/pseudo/pseudo_1.5.1.bb
index 66ff646..5694c4d 100644
--- a/meta/recipes-devtools/pseudo/pseudo_1.5.bb
+++ b/meta/recipes-devtools/pseudo/pseudo_1.5.1.bb
@@ -4,7 +4,7 @@ PR = "r3"
SRC_URI = "http://www.yoctoproject.org/downloads/${BPN}/${BPN}-${PV}.tar.bz2"
-SRC_URI[md5sum] = "e735bc099f2b9fd6d3f152a8c71e6315"
-SRC_URI[sha256sum] = "41a73c59296b9d48005e0f911dd1becf25ffc3ff4cf4268020f2332efcffbf49"
+SRC_URI[md5sum] = "5ec67c7bff5fe68c56de500859c19172"
+SRC_URI[sha256sum] = "3b896f592f4d568569bd02323fad2d6b8c398e16ca36ee5a8947d2ff6c1d3d52"
PSEUDO_EXTRA_OPTS ?= "--enable-force-async"
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb
index 0c872e3..87684ef 100644
--- a/meta/recipes-devtools/pseudo/pseudo_git.bb
+++ b/meta/recipes-devtools/pseudo/pseudo_git.bb
@@ -1,7 +1,7 @@
require pseudo.inc
-SRCREV = "e076225ccdd10dabe3d6097c0682d8c88bd58753"
-PV = "1.5+git${SRCPV}"
+SRCREV = "b9eb2b5633b5a23efe72c950494728d93c2b5823"
+PV = "1.5.1+git${SRCPV}"
PR = "r0"
DEFAULT_PREFERENCE = "-1"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 0/1] pseudo 1.5.1
2013-02-27 21:19 [PATCH 0/1] pseudo 1.5.1 Peter Seebach
2013-02-27 21:19 ` [PATCH 1/1] Update pseudo to 1.5.1 Peter Seebach
@ 2013-02-28 4:53 ` Saul Wold
1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2013-02-28 4:53 UTC (permalink / raw)
To: Peter Seebach; +Cc: openembedded-core
No Tarball yet? Did you give it to Michael H.?
Sau!
On 02/27/2013 01:19 PM, Peter Seebach wrote:
> It turns out that I forgot the part where it would be useful to be
> able to temporarily suppress the suppression of fsync()-type calls.
> Also the documentation had bitrotted (no references to FASTOP or to
> the fsync stuff, or to some other changes), so I fixed a few obvious
> gaps.
>
> This should have no immediate functional change on anything in oe-core,
> but it allows for specifying
> PSEUDO_ALLOW_FSYNC=1 <command>
> and getting fsync behavior from that command.
>
> There's also a performance improvement in the case where NDEBUG is
> defined, which is "never" in our context.
>
> This is a lowish-priority change for oe-core, and in any event I don't
> believe the tarballs are up on the Yocto servers yet, but we need it
> internally and paperwork's easier if I submit it and then backport it.
> (I do recommmend it, though, because this makes it a LOT easier to
> check whether the fsync behavior is affecting something.)
>
> The following changes since commit 8e69f0ea42505e8f703893e18d73658b83d3b046:
> Constantin Musca (1):
> augeas: change SRC_URI
>
> are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib seebs/pseudo151
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=seebs/pseudo151
>
> Peter Seebach (1):
> Update pseudo to 1.5.1
>
> .../pseudo/{pseudo_1.5.bb => pseudo_1.5.1.bb} | 4 ++--
> meta/recipes-devtools/pseudo/pseudo_git.bb | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
> rename meta/recipes-devtools/pseudo/{pseudo_1.5.bb => pseudo_1.5.1.bb} (52%)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-02-28 5:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-27 21:19 [PATCH 0/1] pseudo 1.5.1 Peter Seebach
2013-02-27 21:19 ` [PATCH 1/1] Update pseudo to 1.5.1 Peter Seebach
2013-02-28 4:53 ` [PATCH 0/1] pseudo 1.5.1 Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox