Displaying 13 results from an estimated 13 matches for "write_counter".
2020 Sep 28
0
[RFC PATCH 15/19] tools/vhost-user-rpmb: implement VIRTIO_RPMB_REQ_DATA_WRITE
...; struct virtio_rpmb_frame {
>> uint8_t stuff[196];
>> uint8_t key_mac[RPMB_KEY_MAC_SIZE];
>> - uint8_t data[256];
>> + uint8_t data[RPMB_BLOCK_SIZE];
>> uint8_t nonce[16];
>> /* remaining fields are big-endian */
>> uint32_t write_counter;
>> @@ -124,6 +125,7 @@ typedef struct VuRpmb {
>> uint8_t last_nonce[16];
>> uint16_t last_result;
>> uint16_t last_reqresp;
>> + uint16_t last_address;
>> uint32_t write_count;
>> } VuRpmb;
>>
>> @@ -239,17 +241,30 @...
2015 Nov 10
3
hunting the fatty
Hello dear list,
I've recently discovered 'doveadm stats' and I'm trying to use "doveadm stats dump user" and "doveadm stats dump session"
to understand the pop/imap users that put more stress on the hard disks.
My problem is that some users refuse to delete their emails from the server,
so they keep 20GB of maildir files on the server, the webmail (roundcube)
2015 Nov 11
3
hunting the fatty
On Tue, 10 Nov 2015 08:50:50 +0100
Christian Kivalo <ml+dovecot at valo.at> wrote:
> Hi,
>
> On 2015-11-10 01:44, mancyborg at gmail.com wrote:
> > Hello dear list,
> > I've recently discovered 'doveadm stats' and I'm trying to use
> > "doveadm stats dump user" and "doveadm stats dump session"
> > to understand the
2020 Sep 25
20
[RFC PATCH 00/19] vhost-user-rpmb (Replay Protected Memory Block)
...ng
tools/vhost-user-rpmb: handle shutdown and SIGINT/SIGHUP cleanly
tools/vhost-user-rpmb: add --flash-path for backing store
tools/vhost-user-rpmb: import hmac_sha256 functions
tools/vhost-user-rpmb: implement the PROGRAM_KEY handshake
tools/vhost-user-rpmb: implement VIRTIO_RPMB_REQ_GET_WRITE_COUNTER
tools/vhost-user-rpmb: implement VIRTIO_RPMB_REQ_DATA_WRITE
tools/vhost-user-rpmb: implement VIRTIO_RPMB_REQ_DATA_READ
tools/vhost-user-rpmb: add key persistence
tools/vhost-user-rpmb: allow setting of the write_count
docs: add a man page for vhost-user-rpmb
docs/tools/index.rst...
2015 Nov 11
0
hunting the fatty
On 2015-11-11 03:44, mancyborg at gmail.com wrote:
> On Tue, 10 Nov 2015 08:50:50 +0100
> Christian Kivalo <ml+dovecot at valo.at> wrote:
>
>> Hi,
>>
>> On 2015-11-10 01:44, mancyborg at gmail.com wrote:
>> > Hello dear list,
>> > I've recently discovered 'doveadm stats' and I'm trying to use
>> > "doveadm stats
2012 Apr 25
2
stats + fts squat plugins, indexer-worker error on message indexing
On RHEL 6.2 + dovecot 2.1.5 with the stats and fts (squat) plugins enabled and each user having their own uid on the system I get the following error in the logs when the indexer-worker process indexes some messages:
Apr 25 09:56:19 wardentest3 dovecot: imap-login: Login: user=warden, method=PLAIN, rip=137.238.60.164, lip=137.238.2.240, lport=1993, mpid=19464, encryption=TLS
Apr 25 09:56:26
2015 Oct 15
2
Dovecot top stats
Hi,
I have being try to track down top email users to sometime. When I do a
network traffic check I can see there is about 15 times more email traffic
pulled from mail server than sent.
The problem I am trying to track down is which users are the culprit.
I have enabled doevcot stats and I can do a doveadm stats dump user but I
get a 0 for disk_input, disk_output, read_bytes and write_bytes. I
2016 Nov 01
2
No stats under FreeBSD 10.3
HI,
I?m currently testing the stats module of Dovecot (2.2.26.0 (23d1de6))
Looks like there no statistics under FreeBSD.
Server isn?t busy yet but got at least a few connection open.
Added
mail_plugins = $mail_plugins stats
plugin {
stats_refresh = 30 secs
stats_track_cmds = yes
}
doveadm stats dump global
reset_timestamp last_update num_logins num_cmds num_connected_sessions
2015 Nov 10
0
hunting the fatty
Hi,
On 2015-11-10 01:44, mancyborg at gmail.com wrote:
> Hello dear list,
> I've recently discovered 'doveadm stats' and I'm trying to use
> "doveadm stats dump user" and "doveadm stats dump session"
> to understand the pop/imap users that put more stress on the hard
> disks.
>
> My problem is that some users refuse to delete their emails
2020 Jul 14
0
[PATCH nbdkit RFC 2/2] curl: Implement authorization scripts.
This rather complex feature solves a problem for certain web services
that require a cookie or token for access, especially one which must
be periodically renewed.
For motivation on this see the included documentation, and
item (1)(b) here:
https://www.redhat.com/archives/libguestfs/2020-July/msg00069.html
---
plugins/curl/nbdkit-curl-plugin.pod | 120 +++++++++++
plugins/curl/Makefile.am
2020 Jul 14
3
[PATCH nbdkit RFC 0/2] curl: Implement authorization scripts.
This is an RFC only, at the very least it lacks tests.
This implements a rather complex new feature in nbdkit-curl-plugin
allowing you to specify an external shell script that can be used to
fetch an authorization token for services which requires a token or
cookie for access, especially if that token must be renewed
periodically. The motivation can be seen in the changes to the docs
in patch 2.
2020 Jul 15
0
[PATCH nbdkit v2] curl: Implement header and cookie scripts.
This rather complex feature solves a problem for certain web services
that require a cookie or token for access, especially one which must
be periodically renewed.
For motivation for this feature see the included documentation, and
item (1)(b) here:
https://www.redhat.com/archives/libguestfs/2020-July/msg00069.html
---
plugins/curl/nbdkit-curl-plugin.pod | 142 ++++++++++++
2020 Jul 15
2
[PATCH nbdkit v2] curl: Implement header and cookie scripts.
Evolution of this patch series:
https://www.redhat.com/archives/libguestfs/2020-July/thread.html#00073
Instead of auth-script, this implements header-script and
cookie-script. It can be used for similar purposes but the
implementation is somewhat saner.
Rich.