search for: 1024s

Displaying 20 results from an estimated 30 matches for "1024s".

Did you mean: 1024
2020 Aug 01
2
Re: nbdkit build failure in Koji
One thing I noticed which is a bit odd is: $ rm file; for f in {0..1023}; do printf '%1024s' .; done > file; stat -c "%b %B" file 2048 512 $ rm file; for f in {0..1023}; do printf '%1024s' . >> file; done ; stat -c "%b %B" file 3968 512 The second method is how we currently create the file. Since looking through the history there seems to be no r...
2018 Nov 22
2
NTP strangeness...
...Users\gaio>w32tm /query /source vdcsv1.ad.fvg.lnf.it C:\Users\gaio>w32tm /query /peers N. peer: 1 Peer: vdcsv1.ad.fvg.lnf.it Stato: Attivo Tempo rimanente: 24.4520000s Modalità: 3 (Client) Strato: 4 (riferimento secondario - sincronizza tramite (S)NTP) PeerIntervallo di polling: 10 (1024s) HostIntervallo di polling: 10 (1024s) But in another site, all or most of PC seems 'unconfigured': C:\Users\gaio>w32tm /query /peers N. peer: 1 Peer: Stato: In sospeso Tempo rimanente: 178.3500000s Modalità: 0 (riservato) Strato: 0 (non specificato) PeerIntervallo di polling:...
2020 Aug 03
2
Re: nbdkit build failure in Koji
On 8/1/20 12:39 PM, Richard W.M. Jones wrote: > On Sat, Aug 01, 2020 at 08:46:11AM +0100, Richard W.M. Jones wrote: >> >> One thing I noticed which is a bit odd is: >> >> $ rm file; for f in {0..1023}; do printf '%1024s' .; done > file; stat -c "%b %B" file >> 2048 512 >> $ rm file; for f in {0..1023}; do printf '%1024s' . >> file; done ; stat -c "%b %B" file >> 3968 512 >> >> The second method is how we currently create the file. Since lookin...
2018 Nov 22
0
NTP strangeness...
...po rimanente: 914.2880000s > Modalità: 3 (Client) > Strato: 0 (non specificato) > PeerIntervallo di polling: 0 (non specificato) > HostIntervallo di polling: 10 (1024s) Strato: o (non specificato) PeerIntervallo di polling: 0 (non specificato) Here im really expecting something else. I see stratum 2 PeerPoll interval of 13. HostPool Interval of 14 Did you change something for your time in windows, because thats not needed. I use t...
2018 Mar 07
2
Re: [PATCH nbdkit 1/2] tests: Remove QEMU_IO / HAVE_QEMU_IO.
...$QEMU_IO from the command line (to point to an alternative version on the fly), so even though I agree with your Makefile changes, I disagree with dropping the defaulting of QEMU_IO to qemu-io, > # Populate file, and sanity check that qemu-io can issue parallel requests > printf '%1024s' . > test-parallel-file.data > -$QEMU_IO -f raw -c "aio_write -P 1 0 512" -c "aio_write -P 2 512 512" \ > +qemu-io -f raw -c "aio_write -P 1 0 512" -c "aio_write -P 2 512 512" \ as well as disagree with hard-coding only the first qemu-io in $PAT...
2020 Aug 01
0
Re: nbdkit build failure in Koji
On Sat, Aug 01, 2020 at 08:46:11AM +0100, Richard W.M. Jones wrote: > > One thing I noticed which is a bit odd is: > > $ rm file; for f in {0..1023}; do printf '%1024s' .; done > file; stat -c "%b %B" file > 2048 512 > $ rm file; for f in {0..1023}; do printf '%1024s' . >> file; done ; stat -c "%b %B" file > 3968 512 > > The second method is how we currently create the file. Since looking > through the...
2020 Aug 03
0
Re: nbdkit build failure in Koji
...PM -0500, Eric Blake wrote: > On 8/1/20 12:39 PM, Richard W.M. Jones wrote: > >On Sat, Aug 01, 2020 at 08:46:11AM +0100, Richard W.M. Jones wrote: > >> > >>One thing I noticed which is a bit odd is: > >> > >>$ rm file; for f in {0..1023}; do printf '%1024s' .; done > file; stat -c "%b %B" file > >>2048 512 > >>$ rm file; for f in {0..1023}; do printf '%1024s' . >> file; done ; stat -c "%b %B" file > >>3968 512 > >> > >>The second method is how we currently create th...
2007 Jan 24
1
too many open files error when using quota plugin
...atching an strace on the imap process I'm connected to, the problem seems to be when the plugin goes to close the maildirsize file, it's not closing the correct file descriptor: open("/var/mailstore/01/1a/301620/Maildir/./maildirsize", O_RDWR|O_APPEND) = 1016 read(1016, "1024S\n395 1\n397 1\n", 5120) = 18 read(1016, "", 5102) = 0 close(4294967295) = -1 EBADF (Bad file descriptor) It closes that same descriptor every time. On a side note, I'm just curious why it needs to read the maildirsize file for a fetch...
2020 Mar 17
0
[nbdkit PATCH 3/4] tests: Don't let test-parallel-* hang on nbdkit bug
...plugin file | grep -q ^thread_model=parallel || { echo "nbdkit lacks support for parallel requests"; exit 77; } @@ -43,8 +44,8 @@ cleanup_fn rm -f test-parallel-file.data test-parallel-file.out # Populate file, and sanity check that qemu-io can issue parallel requests printf '%1024s' . > test-parallel-file.data -qemu-io -f raw -c "aio_write -P 1 0 512" -c "aio_write -P 2 512 512" \ - -c aio_flush test-parallel-file.data || +timeout 10s </dev/null qemu-io -f raw -c "aio_write -P 1 0 512" \ + -c "aio_write -P 2 512 512&...
2020 Aug 04
1
Re: nbdkit build failure in Koji
...t; > On 8/1/20 12:39 PM, Richard W.M. Jones wrote: > > >On Sat, Aug 01, 2020 at 08:46:11AM +0100, Richard W.M. Jones wrote: > > >> > > >>One thing I noticed which is a bit odd is: > > >> > > >>$ rm file; for f in {0..1023}; do printf '%1024s' .; done > file; stat -c "%b %B" file > > >>2048 512 > > >>$ rm file; for f in {0..1023}; do printf '%1024s' . >> file; done ; stat -c "%b %B" file > > >>3968 512 > > >> > > >>The second method is h...
2018 Mar 02
1
[nbdkit PATCH] tests: Make parallel tests work at 512-byte granularity
...1 0 1" -c aio_flush \ - file-data || { echo "'$QEMU_IO' can't drive parallel requests"; exit 77; } +trap 'rm -f test-parallel-file.data test-parallel-file.out' 0 1 2 3 15 + +# Populate file, and sanity check that qemu-io can issue parallel requests +printf '%1024s' . > test-parallel-file.data +$QEMU_IO -f raw -c "aio_write -P 1 0 512" -c "aio_write -P 2 512 512" \ + -c aio_flush test-parallel-file.data || + { echo "'$QEMU_IO' can't drive parallel requests"; exit 77; } # Set up the file plugin to d...
2018 Mar 06
0
[PATCH nbdkit 1/2] tests: Remove QEMU_IO / HAVE_QEMU_IO.
...ing file-data" + exit 77 +fi +if ! qemu-io --version; then + echo "$0: missing qemu-io" + exit 77 +fi trap 'rm -f test-parallel-file.data test-parallel-file.out' 0 1 2 3 15 # Populate file, and sanity check that qemu-io can issue parallel requests printf '%1024s' . > test-parallel-file.data -$QEMU_IO -f raw -c "aio_write -P 1 0 512" -c "aio_write -P 2 512 512" \ +qemu-io -f raw -c "aio_write -P 1 0 512" -c "aio_write -P 2 512 512" \ -c aio_flush test-parallel-file.data || - { echo "'$QEMU...
2018 Mar 06
4
[PATCH nbdkit 0/2] tests: Minor reworking of tests.
Small reworking of tests to remove $QEMU_IO, making that consistent with other test tools, and to test IPv6 connections.
2018 Mar 07
0
Re: [PATCH nbdkit 1/2] tests: Remove QEMU_IO / HAVE_QEMU_IO.
...the fly), so > even though I agree with your Makefile changes, I disagree with > dropping the defaulting of QEMU_IO to qemu-io, Does setting $PATH not work for this purpose? Rich. > > # Populate file, and sanity check that qemu-io can issue parallel requests > > printf '%1024s' . > test-parallel-file.data > >-$QEMU_IO -f raw -c "aio_write -P 1 0 512" -c "aio_write -P 2 512 512" \ > >+qemu-io -f raw -c "aio_write -P 1 0 512" -c "aio_write -P 2 512 512" \ > > as well as disagree with hard-coding only the fir...
2020 Jul 31
5
nbdkit build failure in Koji
Hi Eric, I wonder if you have any thoughts about this build failure in tests/test-nozero.sh? https://koji.fedoraproject.org/koji/taskinfo?taskID=48259627 log: https://kojipkgs.fedoraproject.org//work/tasks/9762/48259762/build.log The error is “nozero6.img was trimmed by mistake”. I added “set -x” to the script earlier today so we can see exactly what's wrong, and it is that: ++ stat
2024 Feb 09
1
Joining Windows 10 Domain Member to Samba AD/DC
...;w32tm /query /status Leap Indicator: 3(not synchronized) Stratum: 0 (unspecified) Precision: -23 (119.209ns per tick) Root Delay: 0.0000000s Root Dispersion: 0.0000000s ReferenceId: 0x00000000 (unspecified) Last Successful Sync Time: unspecified Source: Free-running System Clock Poll Interval: 10 (1024s) Some Windows computers come back with "Free-running System Clock", most with "Local CMOS Clock", not sure what the difference is. However, the interesting bit is that the DC is getting time-sync requests from this Windows computer, and apparently responding. So why doesn'...
2020 Mar 17
9
[nbdkit PATCH 0/4] Fix testsuite hang with nbd-stadalone
Either patch 1 or patch 2 in isolation is sufficient to fix the problem that Rich forwarded on from an archlinux tester (name so I can credit them?). But both patches should be applied, as well as backported to appropriate stable branches, to maximize cross-version interoperability of nbdkit vs. plugins. Patch 3 will let us detect future similar bugs much faster. I want patch 4 to ensure that
2024 Feb 09
1
Joining Windows 10 Domain Member to Samba AD/DC
...not synchronized) > Stratum: 0 (unspecified) > Precision: -23 (119.209ns per tick) > Root Delay: 0.0000000s > Root Dispersion: 0.0000000s > ReferenceId: 0x00000000 (unspecified) > Last Successful Sync Time: unspecified > Source: Free-running System Clock > Poll Interval: 10 (1024s) > > Some Windows computers come back with "Free-running System Clock", most with > "Local CMOS Clock", not sure what the difference is. > > However, the interesting bit is that the DC is getting time-sync requests from > this Windows computer, and apparently r...
2024 Jan 16
3
Joining Windows 10 Domain Member to Samba AD/DC
...r.HPRS>w32tm /query /status Leap Indicator: 3(not synchronized) Stratum: 0 (unspecified) Precision: -23 (119.209ns per tick) Root Delay: 0.0000000s Root Dispersion: 0.0000000s ReferenceId: 0x00000000 (unspecified) Last Successful Sync Time: unspecified Source: Local CMOS Clock Poll Interval: 10 (1024s) As I've mentioned, this time synchromization worked perfectly well when this same Windows domain member was connected to the Samba 4.8.2 domain. Does anyone have any idea how I can specify my DC as the time source? Even if I have to hard code this somehow? I have an image backup of the Windo...
2015 May 22
5
[Bug 2404] New: scp skips file/directory on permissions error
https://bugzilla.mindrot.org/show_bug.cgi?id=2404 Bug ID: 2404 Summary: scp skips file/directory on permissions error Product: Portable OpenSSH Version: 6.7p1 Hardware: All OS: All Status: NEW Severity: major Priority: P5 Component: scp Assignee: unassigned-bugs at mindrot.org