Re: [ovs-dev] [PATCH v10] netdev-dpdk: add control plane protection support

2023-05-24 Thread Robin Jarry
Kevin Traynor, May 24, 2023 at 16:06: > Hmm, not sure on this one. I have a feeling that having a 'hash' mode > for tx-steering that only applies to vhost devices, and 'hash' mode > for rx-steering that only applies to NICs means people will miss the > subtlety and try to enable the wrong hash

Re: [ovs-dev] [PATCH v10] netdev-dpdk: add control plane protection support

2023-05-24 Thread Robin Jarry
Ilya Maximets, May 23, 2023 at 22:04: > 'rxq-isolate' will be confused with 'other_config:pmd-rxq-isolate'. > Same likely goes for the 'isolated-rxq'. > > 'rxq-steernig' may be confused with 'other_config:tx-steering'. > But this can be argued that it's essentially similar functionality, > so

Re: [ovs-dev] [PATCH v10] netdev-dpdk: add control plane protection support

2023-05-23 Thread Robin Jarry
Aaron Conole, May 23, 2023 at 15:32: > I think one issue I have with this is that the name is a bit > misleading. Control plane, from OVS perspective, would be like OpenFlow > communications. This is more like a traffic steering mechanism. > > Maybe it would help to call it something like

[ovs-dev] [PATCH v10] netdev-dpdk: add control plane protection support

2023-04-17 Thread Robin Jarry
f users are accidentally redirecting all traffic in the control plane queue. Cc: Anthony Harivel Cc: Christophe Fontaine Cc: David Marchand Cc: Kevin Traynor Signed-off-by: Robin Jarry --- v9 -> v10: * If hw-offload is enabled, cp-protection will now be forcibly disabled on all ports

Re: [ovs-dev] [PATCH v9] netdev-dpdk: add control plane protection support

2023-04-06 Thread Robin Jarry
Kevin Traynor, Mar 23, 2023 at 15:27: > Hi Robin, > > Regarding having both features enabled, I think it's an issue that it's > chronological based if they are enabled while running. It introduces > another variable that might confuse things. > > For example, the operation could be changed from

Re: [ovs-dev] [PATCH v9] netdev-dpdk: add control plane protection support

2023-03-07 Thread Robin Jarry
Hi Aaron, Thanks for your feedback. Aaron Conole, Mar 07, 2023 at 19:57: > I'm concerned about this - this is a negative interference with rte_flow > offload. And rte_flow offload would also just alleviate these problems, > yes? Maybe we should encourage a user to just turn on flow offloading?

Re: [ovs-dev] [RFC] dpdk: Allow retaining cap_sys_rawio privileges

2023-02-23 Thread Robin Jarry
Salut Gaëtan, Gaetan Rivet, Feb 23, 2023 at 22:33: > I've looked at your patch Robin and the offloads you insert in > dpdk_cp_prot_add_flow use the following: > > const struct rte_flow_attr attr = { .ingress = 1 }; > > implicitly setting transfer and group to 0. If either of those had > been

Re: [ovs-dev] [RFC] dpdk: Allow retaining cap_sys_rawio privileges

2023-02-23 Thread Robin Jarry
Aaron Conole, Feb 23, 2023 at 22:09: > Thanks for taking a look. You're saying that you tested without this > patch applied, yes? That could be. I only know of one hardware which > requires CAP_SYS_RAWIO for rte_flow to function. Yes that is correct, I tested *without* this patch applied and

Re: [ovs-dev] [PATCH v9] netdev-dpdk: add control plane protection support

2023-02-23 Thread Robin Jarry
For the record, I have tested this feature as a non-privileged user: ovs-ctl --ovs-user="openvswitch:hugetlbfs" start With the proper UDEV rules for vfio based devices, I have successfully configured cp-protection=lacp on i40e (Intel X710 NICs) and mlx5 (ConnectX-5 Ex NICs) drivers.

Re: [ovs-dev] [RFC] dpdk: Allow retaining cap_sys_rawio privileges

2023-02-23 Thread Robin Jarry
Aaron Conole, Feb 22, 2023 at 18:07: > Open vSwitch generally tries to let the underlying operating system > managed the low level details of hardware, for example DMA mapping, > bus arbitration, etc. However, when using DPDK, the underlying > operating system yields control of many of these

[ovs-dev] [PATCH v9] netdev-dpdk: add control plane protection support

2023-02-22 Thread Robin Jarry
n the future but it would expose to more potential issues if users are accidentally redirecting all traffic in the control plane queue. Cc: Anthony Harivel Cc: Christophe Fontaine Cc: David Marchand Cc: Kevin Traynor Signed-off-by: Robin Jarry --- v8 -> v9: * Rebased on cf288fdfe2bf ("AUTHORS

Bug#1028779: buildbot: FTBFS: dh_auto_test: error: pybuild --test -i python{version} -p 3.11 --system=custom "--test-args=PYTHONPATH=pkg:{destdir}/{install_dir} PATH=\$PATH:{destdir}/usr/bin trial3 --

2023-02-06 Thread Robin Jarry
Nilesh Patra, Feb 05, 2023 at 12:12: Hi Robin, buildbot is marked for removal on Feb 16. Do you intend to make an upload? Hi Nilesh, sorry I had forgotten about that. It looks like Bastien has uploaded 3.7.0-1 with a fix.

Bug#1028779: buildbot: FTBFS: dh_auto_test: error: pybuild --test -i python{version} -p 3.11 --system=custom "--test-args=PYTHONPATH=pkg:{destdir}/{install_dir} PATH=\$PATH:{destdir}/usr/bin trial3 --

2023-02-06 Thread Robin Jarry
Nilesh Patra, Feb 05, 2023 at 12:12: Hi Robin, buildbot is marked for removal on Feb 16. Do you intend to make an upload? Hi Nilesh, sorry I had forgotten about that. It looks like Bastien has uploaded 3.7.0-1 with a fix.

Re: [ovs-dev] [PATCH v8] netdev-dpdk: add control plane protection support

2023-01-17 Thread Robin Jarry
Hi Kevin, Kevin Traynor, Jan 17, 2023 at 19:38: > I saw in patchwork that there was a CI fail but I didn't examine it. > Perhaps you could check and confirm about it. Yes I saw it and I didn't understand what went wrong: 2023-01-13T15:44:29.422Z|1|dpif_netdev(revalidator75)|ERR|internal

[ovs-dev] [PATCH v8] netdev-dpdk: add control plane protection support

2023-01-13 Thread Robin Jarry
tial issues if users are accidentally redirecting all traffic in the control plane queue. Cc: Christophe Fontaine Cc: Kevin Traynor Cc: David Marchand Signed-off-by: Robin Jarry --- v6 -> v7: * Fixed double free in case of cp-protection configuration fail. * Fixed segmentation fault when cr

Re: [ovs-dev] [PATCH v7] netdev-dpdk: add control plane protection support

2023-01-13 Thread Robin Jarry
Kevin Traynor, Jan 12, 2023 at 14:56: > > +(void) dpdk_cp_prot_rss_configure(dev, dev->up.n_rxq); > > I'm wondering is this needed? It is allowing traffic go to the extra > cp-proto queue that the user has not request for general traffic until > later when it is stopped. I don't see a need to

Re: [ovs-dev] [PATCH v7] netdev-dpdk: add control plane protection support

2023-01-13 Thread Robin Jarry
Kevin Traynor, Jan 13, 2023 at 12:05: > Hi Robin - not sure if you saw the test report from Intel: > https://mail.openvswitch.org/pipermail/ovs-build/2023-January/027792.html > > There is a problem with adding vhost port, existing before cp-prot is > enabled. see below, > > 5500│ /* Enable TX

[ovs-dev] [PATCH v7] netdev-dpdk: add control plane protection support

2023-01-11 Thread Robin Jarry
tial issues if users are accidentally redirecting all traffic in the control plane queue. Cc: Christophe Fontaine Cc: Kevin Traynor Cc: David Marchand Signed-off-by: Robin Jarry --- v6 -> v7: * Simplified retry without cp-protection on error. Added a new user_n_rxq field in struct netdev_

Re: [ovs-dev] [PATCH v3 2/2] dpif-netdev: Add load based PMD sleeping.

2023-01-09 Thread Robin Jarry
is in a low-power state it may result in some lost packets > or > +extra latency before the PMD thread returns to processing packets at full > +rate. > + > +.. note:: > + > + Default Linux kernel hrtimer resolution is set to 50 microseconds so this > +will add

[ovs-dev] [PATCH v6] netdev-dpdk: add control plane protection support

2023-01-06 Thread Robin Jarry
tial issues if users are accidentally redirecting all traffic in the control plane queue. Cc: Christophe Fontaine Cc: Kevin Traynor Cc: David Marchand Signed-off-by: Robin Jarry --- v5 -> v6: * Rebased on 9736b971b519 ("rhel: Enable AF_XDP by default in Fedora builds.") *

Re: [ovs-dev] [PATCH v5] netdev-dpdk: add control plane protection support

2022-12-21 Thread Robin Jarry
Kevin Traynor, Dec 21, 2022 at 17:35: > Hi Robin, > > I did a bit of testing and some comments. I tested out applying a > config. I wasn't able to check for lacp traffic, but I did see the extra > rxq being added and rss working as expected on the other rx queues. > > One issue I found is where

[ovs-dev] [PATCH v5] netdev-dpdk: add control plane protection support

2022-12-16 Thread Robin Jarry
dentally redirecting all traffic in the control plane queue. Cc: Christophe Fontaine Cc: Kevin Traynor Cc: David Marchand Signed-off-by: Robin Jarry --- v4 -> v5: * Added NEWS entry * Updated dpdk documentation link to 22.11 * Marked the feature as experimental * Used xstrdup() in dpdk_cp_pr

[ovs-dev] [PATCH v4] netdev-dpdk: add control plane protection support

2022-12-12 Thread Robin Jarry
ers are accidentally redirecting all traffic in the control plane queue. Cc: Christophe Fontaine Cc: Kevin Traynor Signed-off-by: Robin Jarry --- v3 -> v4: * Rebased on master 739bcf2263b3 ("odp-execute: Fix ipv4 missing clearing of connection tracking fields.") * Removed the extra reta_s

Re: [ovs-dev] mlx5 rte_eth_dev_info.reta_size value

2022-12-06 Thread Robin Jarry
Robin Jarry, Dec 05, 2022 at 16:57: > Hi Ori, > > While working on a patch for OvS[1], I have tried to reconfigure the > redirection table using the code examples that are layout around in > testpmd and other places. > > [1]: > http://patchwork.ozlabs.org/p

[ovs-dev] mlx5 rte_eth_dev_info.reta_size value

2022-12-05 Thread Robin Jarry
size : +rxqs_n)); When rxqs_n == 2, reta_idx_n is initialized to 2 as well. [2]: https://git.dpdk.org/dpdk/commit/?id=634efbc2c8c05 If you can provide any help, that would be much appreciated. Thanks! -- Robin Jarry Principal Software Engineer Red Hat ___

Re: [ovs-dev] [PATCH v3] netdev-dpdk: add control plane protection support

2022-11-14 Thread Robin Jarry
Hi Kevin, Kevin Traynor, Nov 11, 2022 at 19:15: > > +reta_conf_size = (dev->reta_size / RTE_ETH_RETA_GROUP_SIZE) > > +* sizeof(struct rte_eth_rss_reta_entry64); > > In dpdk_eth_dev_init, we get reta_size from driver, > > mlx5_ethdev.c > > 333├>info->reta_size =

[ovs-dev] [PATCH v3] netdev-dpdk: add control plane protection support

2022-10-21 Thread Robin Jarry
ers are accidentally redirecting all traffic in the control plane queue. Cc: Christophe Fontaine Cc: Kevin Traynor Signed-off-by: Robin Jarry --- v2 -> v3: * Added dry_run validation that rte_flows are all supported by the NIC before configuring anything. * Added check to make cp-protection

[PATCH v2] cli: add options --offset and --limit to notmuch show

2022-10-18 Thread Robin Jarry
t;cli: add options --offset and --limit to notmuch search"). Update man page, shell completion and add a test case to ensure it works as expected. Cc: Tim Culverhouse Cc: Tomi Ollila Signed-off-by: Robin Jarry --- v1 -> v2: - fixed typo in print_status_query (search -> show)

Re: [PATCH] cli: add options --offset and --limit to notmuch show

2022-10-12 Thread Robin Jarry
Hi Tomi, Tomi Ollila, Oct 12, 2022 at 21:39: > > diff --git a/notmuch-show.c b/notmuch-show.c > > index ee9efa7448d7..ad31e0123268 100644 > > --- a/notmuch-show.c > > +++ b/notmuch-show.c > > @@ -1159,6 +1159,18 @@ do_show_threaded (void *ctx, > > notmuch_thread_t *thread; > >

[PATCH] cli: add options --offset and --limit to notmuch show

2022-10-11 Thread Robin Jarry
t;cli: add options --offset and --limit to notmuch search"). Update man page, shell completion and add a test case to ensure it works as expected. Cc: Tim Culverhouse Signed-off-by: Robin Jarry --- completion/notmuch-completion.bash | 2 +- completion/zsh/_notmuch| 2 + doc/ma

Re: [PATCH] cli: add options --offset and --limit to notmuch show

2022-10-11 Thread Robin Jarry
Robin Jarry, Oct 12, 2022 at 00:19: > + if (print_status_query ("notmuch search", query, s)) I just realized that I copy pasted code from notmuch-search.c and did not updated everything on the way... I'll hold before sending a v2 if there are other remarks or changes required

[PATCH] css: make diff colors more accessible

2022-10-05 Thread Robin Jarry
ated color palette previews for normal vision and all common color deficiencies. I also included the same diff as seen from Github interface for reference. Link: http://files.diabeteman.com/patchwork-diff-colors/ Signed-off-by: Robin Jarry --- htdocs/css/style.css

Re: [ovs-dev] [RFC PATCH] netdev-dpdk: add control plane protection support

2022-09-22 Thread Robin Jarry
Hi Thilak, Thilak Raj Surendra Babu, Sep 22, 2022 at 07:16: > Could we call rte_flow_validate() before calling flow_create ? At first, I thought it would not be necessary hence skipped the validation and I am only relying on the driver to reject the rule if not supported. However, it may be a

[ovs-dev] [RFC PATCH] netdev-dpdk: add control plane protection support

2022-09-21 Thread Robin Jarry
710 does not support the match all flows. Validation on other NICs should be done. * Unit tests may not be possible here. The netdev-dummy driver does not share code with netdev-dpdk. Cc: Christophe Fontaine Cc: Kevin Traynor Signed-off-by: Robin Jarry --- Documentation/topics/dpdk/phy.r

Bug#1019152: python-bonsai: flaky autopkgtest on armhf and armel: timeout too short?

2022-09-19 Thread Robin Jarry
Paul Gevers, Sep 19, 2022 at 21:52: > Architecture: !armel !armhf > is supported. Awesome. I'll upload a new version with that fix then. Thanks!

Bug#1019152: python-bonsai: flaky autopkgtest on armhf and armel: timeout too short?

2022-09-19 Thread Robin Jarry
Paul Gevers, Sep 19, 2022 at 21:52: > Architecture: !armel !armhf > is supported. Awesome. I'll upload a new version with that fix then. Thanks!

Bug#1019152: python-bonsai: flaky autopkgtest on armhf and armel: timeout too short?

2022-09-19 Thread Robin Jarry
Paul Gevers, Sep 19, 2022 at 21:13: > I consider tests marked flaky as not so useful. Obviously if you'll > look at it from time to time it's OK, but if no human is going to > inspect it, it's smarter to just skip those architectures. Doing the > latter is also easier than the former as we have

Bug#1019152: python-bonsai: flaky autopkgtest on armhf and armel: timeout too short?

2022-09-19 Thread Robin Jarry
Paul Gevers, Sep 19, 2022 at 21:13: > I consider tests marked flaky as not so useful. Obviously if you'll > look at it from time to time it's OK, but if no human is going to > inspect it, it's smarter to just skip those architectures. Doing the > latter is also easier than the former as we have

Bug#1019152: python-bonsai: flaky autopkgtest on armhf and armel: timeout too short?

2022-09-19 Thread Robin Jarry
Hi Paul, sorry for the delay. I am getting to work on this issue. I am not sure how to increase the timeouts for these tests. Would it be acceptable to mark these tests as flaky only on armel and armhf?

Bug#1019152: python-bonsai: flaky autopkgtest on armhf and armel: timeout too short?

2022-09-19 Thread Robin Jarry
Hi Paul, sorry for the delay. I am getting to work on this issue. I am not sure how to increase the timeouts for these tests. Would it be acceptable to mark these tests as flaky only on armel and armhf?

Bug#1019894: ITP: golang-sourcehut-rockorager-tcell-term -- TODO

2022-09-15 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-sourcehut-rockorager-tcell-term Version : 0.1.0-1 Upstream Author : Tim Culverhouse * URL : https://git.sr.ht/~rockorager/tcell-term * License : expat Programming Lang: Go

Bug#1019894: ITP: golang-sourcehut-rockorager-tcell-term -- TODO

2022-09-15 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-sourcehut-rockorager-tcell-term Version : 0.1.0-1 Upstream Author : Tim Culverhouse * URL : https://git.sr.ht/~rockorager/tcell-term * License : expat Programming Lang: Go

Bug#1019894: ITP: golang-sourcehut-rockorager-tcell-term -- TODO

2022-09-15 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-sourcehut-rockorager-tcell-term Version : 0.1.0-1 Upstream Author : Tim Culverhouse * URL : https://git.sr.ht/~rockorager/tcell-term * License : expat Programming Lang: Go

Bug#1019894: ITP: golang-sourcehut-rockorager-tcell-term -- TODO

2022-09-15 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-sourcehut-rockorager-tcell-term Version : 0.1.0-1 Upstream Author : Tim Culverhouse * URL : https://git.sr.ht/~rockorager/tcell-term * License : expat Programming Lang: Go

[ovs-dev] [PATCH v3] netdev-dpdk: fix tx_dropped counters value

2022-09-01 Thread Robin Jarry
that were *not* transmitted. Add that number to stats.tx_failure_drops and only include the packets that were dropped in previous steps afterwards. Fixes: 29b94e12d57d ("netdev-dpdk: Refactor the DPDK transmit path.") Signed-off-by: Robin Jarry --- Notes: v2 -> v3: fixed double co

Re: [ovs-dev] [PATCH v2] netdev-dpdk: fix tx_dropped counters value

2022-09-01 Thread Robin Jarry
Hi Mike, Mike Pattrick, Aug 31, 2022 at 18:09: > On Wed, Aug 3, 2022 at 4:58 AM Robin Jarry wrote: > > dropped += netdev_dpdk_eth_tx_burst(dev, qid, pkts, cnt); > > +stats.tx_failure_drops += dropped; > > Hello Robin, > > I think this will double count tx_fail

Bug#1017247: golang-github-gatherstars-com-jwz: FTBFS: dh_auto_test: error: cd _build && go test -vet=off -v -p 8 github.com/gatherstars-com/jwz github.com/gatherstars-com/jwz/examples/visualize retur

2022-08-25 Thread Robin Jarry
Hey Nilesh, Nilesh Patra, Aug 25, 2022 at 14:20: > This bug is causing an autoremoval warning for aerc. There does not seem to > be a fix > upstream about this. I am not sure what exactly is triggering this, but my > hunch > is it might be related to change in sort function with golang 1.19. >

Bug#1017247: golang-github-gatherstars-com-jwz: FTBFS: dh_auto_test: error: cd _build && go test -vet=off -v -p 8 github.com/gatherstars-com/jwz github.com/gatherstars-com/jwz/examples/visualize retur

2022-08-25 Thread Robin Jarry
Hey Nilesh, Nilesh Patra, Aug 25, 2022 at 14:20: > This bug is causing an autoremoval warning for aerc. There does not seem to > be a fix > upstream about this. I am not sure what exactly is triggering this, but my > hunch > is it might be related to change in sort function with golang 1.19. >

[ovs-dev] [PATCH v2] netdev-dpdk: fix tx_dropped counters value

2022-08-03 Thread Robin Jarry
s counters into account. Fixes: 29b94e12d57d ("netdev-dpdk: Refactor the DPDK transmit path.") Signed-off-by: Robin Jarry --- v1 -> v2: fixed build error (last minute copy paste without testing...) lib/netdev-dpdk.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/

[ovs-dev] [PATCH] netdev-dpdk: fix tx_dropped counters value

2022-08-02 Thread Robin Jarry
s counters into account. Fixes: 29b94e12d57d ("netdev-dpdk: Refactor the DPDK transmit path.") Signed-off-by: Robin Jarry --- I am not 100% sure about the tx_dropped global counter but now it is aligned with vhost ports. lib/netdev-dpdk.c | 6 +- 1 file changed, 5 insertions(+), 1 del

Bug#1016453: python-tornado breaks python-bonsai autopkgtest: 'TornadoLDAPConnectionTest' object has no attribute 'should_close_asyncio_loop'

2022-08-01 Thread Robin Jarry
Hi Paul, I have checked in bonsai code base, and there is no reference to should_close_asyncio_loop. It looks like a tornado thing. However, looking at the full error trace, I can see that: > ldapwhoami: unrecognized option -� > Issue LDAP Who am I? operation to request user's authzid > >

Bug#1016453: python-tornado breaks python-bonsai autopkgtest: 'TornadoLDAPConnectionTest' object has no attribute 'should_close_asyncio_loop'

2022-08-01 Thread Robin Jarry
Hi Paul, I have checked in bonsai code base, and there is no reference to should_close_asyncio_loop. It looks like a tornado thing. However, looking at the full error trace, I can see that: > ldapwhoami: unrecognized option -� > Issue LDAP Who am I? operation to request user's authzid > >

Robin Jarry: Declaration of intent to become a DM

2022-07-18 Thread Robin Jarry (via nm.debian.org)
- iHUEARYKAB0WIQTYtqmQfDq3IEKLYGhicY4NZm/DNQUCYtUsfgAKCRBicY4NZm/D Nd+oAQC2TU8NosVmyBE6yyXObpZGRbrbs2wKove1Dv5V0wGCEgEA8NqCWa+yAF3V dTf0mwm69+u9QTAdQXSRtYF5pwslNw8= =GnVk -END PGP SIGNATURE- Robin Jarry (via nm.debian.org) For details and to comment, visit https://nm.debian.org/process/1092

Re: RFS: aerc

2022-07-15 Thread Robin Jarry
Nilesh Patra, Jul 15, 2022 at 18:48: > Uploaded, thank you. Thanks! > Was the fix int64 v/s int32 thingy only -- just a type conversion? > > Admittedly I didn't go through the code. Here is the upstream patch: https://lists.sr.ht/~rjarry/aerc-devel/patches/33896 There are integers involved,

Re: RFS: aerc

2022-07-15 Thread Robin Jarry
Nilesh Patra, Jul 15, 2022 at 18:04: > The CI for i386 is failing due to one failing test, see[1] > (Please check once before sending RFS :))) > > Can you fix this? Otherwise this package won't migrate to testing. > > [1]: https://salsa.debian.org/go-team/packages/aerc/-/jobs/2999193 Hi Nilesh,

RFS: aerc

2022-07-15 Thread Robin Jarry
Hi all, could a kind soul upload aerc on my behalf? Thanks! -- Robin

Re: Sponsor upload request: golang-github-emersion-go-mbox

2022-07-04 Thread Robin Jarry
Nilesh Patra, Jul 04, 2022 at 16:17: > Please do the following: > - mention the license of 'reader_test.go' in your d/copyright. > - lintian error: "E: golang-github-emersion-go-mbox-dev: > extended-description-is-empty" > - out-of-date-standards-version 4.6.0 (released

Sponsor upload request: golang-github-emersion-go-mbox

2022-07-04 Thread Robin Jarry
Hi Nilesh, all, I am preparing for packaging the next release of aerc: https://git.sr.ht/~rjarry/aerc https://salsa.debian.org/go-team/packages/aerc/ It requires a new dependency which is not available in Debian yet: github.com/emersion/go-mboxhttps://bugs.debian.org/1014313 Using

Bug#1014313: ITP: golang-github-emersion-go-mbox -- Package mbox parses the mbox file format into messages and formats messages into mbox files

2022-07-03 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-mbox Version : 1.0.3-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-mbox * License : Expat Programming Lang: Go Description : Package

Bug#1014313: ITP: golang-github-emersion-go-mbox -- Package mbox parses the mbox file format into messages and formats messages into mbox files

2022-07-03 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-mbox Version : 1.0.3-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-mbox * License : Expat Programming Lang: Go Description : Package

Bug#1014313: ITP: golang-github-emersion-go-mbox -- Package mbox parses the mbox file format into messages and formats messages into mbox files

2022-07-03 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-mbox Version : 1.0.3-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-mbox * License : Expat Programming Lang: Go Description : Package

Bug#1014313: ITP: golang-github-emersion-go-mbox -- Package mbox parses the mbox file format into messages and formats messages into mbox files

2022-07-03 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-mbox Version : 1.0.3-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-mbox * License : Expat Programming Lang: Go Description : Package

Re: Request for sponsor uploads

2022-06-29 Thread Robin Jarry
Nilesh Patra, Jun 29, 2022 at 10:23: > Please add in yourself to uploaders for aerc if you'd like. I will. > Uploaded. However please take a look at my commits. Awesome, thanks!

Request for sponsor uploads

2022-06-28 Thread Robin Jarry
Hi Nilesh, all, I am preparing for packaging the next release of aerc: https://git.sr.ht/~rjarry/aerc https://salsa.debian.org/go-team/packages/aerc/ It requires three new dependencies which are not available in Debian yet: * github.com/arran4/golang-ical https://bugs.debian.org/1013927 *

Bug#1013966: ITP: golang-github-emersion-go-milter -- Go library to write mail filters

2022-06-28 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-milter Version : 0.3.3-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-milter * License : BSD-2-clause Programming Lang: Go Description

Bug#1013966: ITP: golang-github-emersion-go-milter -- Go library to write mail filters

2022-06-28 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-milter Version : 0.3.3-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-milter * License : BSD-2-clause Programming Lang: Go Description

Bug#1013966: ITP: golang-github-emersion-go-milter -- Go library to write mail filters

2022-06-28 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-milter Version : 0.3.3-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-milter * License : BSD-2-clause Programming Lang: Go Description

Bug#1013966: ITP: golang-github-emersion-go-milter -- Go library to write mail filters

2022-06-28 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-milter Version : 0.3.3-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-milter * License : BSD-2-clause Programming Lang: Go Description

Bug#1013927: ITP: golang-github-arran4-golang-ical -- A ICS / ICal parser and serialiser for Golang.

2022-06-27 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-arran4-golang-ical Version : 0.0~git20220517.fd89fefb0182-1 Upstream Author : Arran Ubels * URL : https://github.com/arran4/golang-ical * License : Apache-2.0 Programming Lang

Bug#1013928: ITP: golang-github-emersion-go-msgauth -- A Go library and tools for DKIM, DMARC and Authentication-Results

2022-06-27 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-msgauth Version : 0.6.6-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-msgauth * License : Expat Programming Lang: Go Description : A Go

Bug#1013928: ITP: golang-github-emersion-go-msgauth -- A Go library and tools for DKIM, DMARC and Authentication-Results

2022-06-27 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-msgauth Version : 0.6.6-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-msgauth * License : Expat Programming Lang: Go Description : A Go

Bug#1013928: ITP: golang-github-emersion-go-msgauth -- A Go library and tools for DKIM, DMARC and Authentication-Results

2022-06-27 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-msgauth Version : 0.6.6-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-msgauth * License : Expat Programming Lang: Go Description : A Go

Bug#1013927: ITP: golang-github-arran4-golang-ical -- A ICS / ICal parser and serialiser for Golang.

2022-06-27 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-arran4-golang-ical Version : 0.0~git20220517.fd89fefb0182-1 Upstream Author : Arran Ubels * URL : https://github.com/arran4/golang-ical * License : Apache-2.0 Programming Lang

Bug#1013927: ITP: golang-github-arran4-golang-ical -- A ICS / ICal parser and serialiser for Golang.

2022-06-27 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-arran4-golang-ical Version : 0.0~git20220517.fd89fefb0182-1 Upstream Author : Arran Ubels * URL : https://github.com/arran4/golang-ical * License : Apache-2.0 Programming Lang

Bug#1013928: ITP: golang-github-emersion-go-msgauth -- A Go library and tools for DKIM, DMARC and Authentication-Results

2022-06-27 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-emersion-go-msgauth Version : 0.6.6-1 Upstream Author : Simon Ser * URL : https://github.com/emersion/go-msgauth * License : Expat Programming Lang: Go Description : A Go

Bug#1013927: ITP: golang-github-arran4-golang-ical -- A ICS / ICal parser and serialiser for Golang.

2022-06-27 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry * Package name: golang-github-arran4-golang-ical Version : 0.0~git20220517.fd89fefb0182-1 Upstream Author : Arran Ubels * URL : https://github.com/arran4/golang-ical * License : Apache-2.0 Programming Lang

Bug#1004344: how to generate list of JS deps to package

2022-06-20 Thread Robin Jarry
Martin, Jun 20, 2022 at 15:49: > See https://wiki.debian.org/Javascript/Nodejs/Tasks/ > > The tool generates the source code for a wiki page, e.g. like this one: Hi, I ran the script on buildbot-build-common which is not a real installable package, only a toolkit used by www plugins (it took

Re: [ovs-dev] User space connection tracking benchmarks

2022-06-07 Thread Robin Jarry
Paolo Valerio, Jun 05, 2022 at 19:37: > Just a note that may be useful. > After some tests, I noticed that establishing e.g. two TCP connections, > and leaving the first one idle after 3whs, once the second connection > expires (after moving to TIME_WAIT as a result of termination), the > second

[ovs-dev] User space connection tracking benchmarks

2022-04-27 Thread Robin Jarry
Hi all, I have been working on some benchmarks of user space connection tracking. I wanted to give some feedback on the results so that I got on two patch series that were submitted by Paolo and Gaëtan a while ago. In this intent, I have written a small script that makes use of T-Rex ASTF API to

[ovs-dev] [PATCH] Documentation: use new syntax for dpdk port representors

2022-04-27 Thread Robin Jarry
Since DPDK 21.05, the representor identifier now handles a relative VF offset. The legacy representor ID seems only valid in certain cases (first dpdk port). Link: https://github.com/DPDK/dpdk/commit/cebf7f17159a8 Signed-off-by: Robin Jarry --- Documentation/topics/dpdk/phy.rst | 12

Bug#1006955: ITP: python-txrequests -- Asynchronous Python HTTP Requests for Humans using twisted

2022-03-08 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry X-Debbugs-Cc: debian-de...@lists.debian.org * Package name: python-txrequests Version : 0.9.6 Upstream Author : Pierre Tardy * URL : https://github.com/tardyp/txrequests * License : Apache-2.0 Programming

Bug#1006955: ITP: python-txrequests -- Asynchronous Python HTTP Requests for Humans using twisted

2022-03-08 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry X-Debbugs-Cc: debian-devel@lists.debian.org * Package name: python-txrequests Version : 0.9.6 Upstream Author : Pierre Tardy * URL : https://github.com/tardyp/txrequests * License : Apache-2.0 Programming

Bug#1006955: ITP: python-txrequests -- Asynchronous Python HTTP Requests for Humans using twisted

2022-03-08 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry X-Debbugs-Cc: debian-de...@lists.debian.org * Package name: python-txrequests Version : 0.9.6 Upstream Author : Pierre Tardy * URL : https://github.com/tardyp/txrequests * License : Apache-2.0 Programming

Bug#1004344: buildbot: Fails to load the web interface

2022-01-25 Thread Robin Jarry
Hi, this is a known issue. The buildbot-www package cannot be integrated in Debian due to tons of missing JS dependencies. See buildbot(7) and bug #883529 for more details. Since then, buildbot has changed from coffeescript+gulp to plain JS+webpack. This should make it easier to package the

Re: Review of python-bonsai

2021-12-13 Thread Robin Jarry
Hi Louis-Philippe, I think I have addressed all your comments. I have pushed fixes in a temporary branch. I'll integrate them on debian/master once the review is finished: https://salsa.debian.org/python-team/packages/python-bonsai/-/commits/review/ See my replies below: Louis-Philippe

Bug#1001417: ITP: bonsai -- Python3 asyncio-compatible LDAP library

2021-12-09 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry X-Debbugs-Cc: debian-devel@lists.debian.org * Package name: bonsai Version : 1.3.0 Upstream Author : noirello * URL : https://github.com/noirello/bonsai * License : MIT Programming Lang: Python 3

Bug#1001417: ITP: bonsai -- Python3 asyncio-compatible LDAP library

2021-12-09 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry X-Debbugs-Cc: debian-de...@lists.debian.org * Package name: bonsai Version : 1.3.0 Upstream Author : noirello * URL : https://github.com/noirello/bonsai * License : MIT Programming Lang: Python 3

Bug#1001417: ITP: bonsai -- Python3 asyncio-compatible LDAP library

2021-12-09 Thread Robin Jarry
Package: wnpp Severity: wishlist Owner: Robin Jarry X-Debbugs-Cc: debian-de...@lists.debian.org * Package name: bonsai Version : 1.3.0 Upstream Author : noirello * URL : https://github.com/noirello/bonsai * License : MIT Programming Lang: Python 3

Bug#993522: buildbot-worker: Setting WORKER_OPTIONS to any non-empty value doesn't work

2021-09-02 Thread Robin Jarry
Hi Vadim, 2021-09-02, Vadim Zeitlin: > Package: buildbot-worker > Version: 2.10.1-1 > Severity: normal > > Dear Maintainer, > > Setting WORKER_OPTIONS in /etc/default/buildbot-worker to e.g. "--verbose" > doesn't work because its value is used in a wrong place in the init.d > script: it does >

Bug#984970: buildbot 2.10.2 in Debian/bullseye

2021-03-11 Thread Robin Jarry
Unfortunately, I don't know if 3.0.0 is stable. It deprecates a lot of things and only has been out for a couple of days. I'll submit 2.10.2 first and then I'll check with the python team what they think.

Bug#984970: buildbot 2.10.2 in Debian/bullseye

2021-03-11 Thread Robin Jarry
Hi Hans, I was considering uploading 3.0.0 now that has been released. https://github.com/buildbot/buildbot/releases/tag/v3.0.0 Would that be ok?

Bug#953966: buildbot: autopkgtest failure with Python 3.8 as default

2020-03-26 Thread Robin Jarry
Control: severity -1 important The autopkgtests seem to work now: https://ci.debian.net/user/britney/jobs?package=buildbot[]=testing[]=amd64 The bug may have been fixed by: python3-defaults 3.8.2-2 Lets leave it open for a while to see if the tests are stable now. -- Robin

Bug#953966: buildbot: autopkgtest failure with Python 3.8 as default

2020-03-26 Thread Robin Jarry
Control: severity -1 important The autopkgtests seem to work now: https://ci.debian.net/user/britney/jobs?package=buildbot[]=testing[]=amd64 The bug may have been fixed by: python3-defaults 3.8.2-2 Lets leave it open for a while to see if the tests are stable now. -- Robin

Accepted buildbot 2.4.1-1 (source) into unstable

2019-10-16 Thread Robin Jarry
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Tue, 15 Oct 2019 12:10:59 +0200 Source: buildbot Architecture: source Version: 2.4.1-1 Distribution: unstable Urgency: medium Maintainer: Python Applications Packaging Team Changed-By: Robin Jarry Changes: buildbot (2.4.1-1

Accepted buildbot 2.3.1-1 (source) into unstable

2019-07-18 Thread Robin Jarry
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Tue, 09 Jul 2019 09:38:25 +0200 Source: buildbot Architecture: source Version: 2.3.1-1 Distribution: unstable Urgency: medium Maintainer: Python Applications Packaging Team Changed-By: Robin Jarry Changes: buildbot (2.3.1-1

Bug#872864: gbp-buildpackage: orig signature file not exported with pristine-tar

2019-07-09 Thread Robin Jarry
Hi, This problem causes a lintian warning: W: buildbot source: orig-tarball-missing-upstream-signature buildbot_2.3.1.orig.tar.gz N: N:The packaging includes an upstream signing key but the corresponding N:.asc signature for one or more source tarballs are not included in your N:

Accepted buildbot 2.0.1-2 (source) into unstable

2019-06-04 Thread Robin Jarry
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Mon, 03 Jun 2019 14:47:25 +0200 Source: buildbot Architecture: source Version: 2.0.1-2 Distribution: unstable Urgency: high Maintainer: Python Applications Packaging Team Changed-By: Robin Jarry Closes: 929849 Changes: buildbot

Bug#929965: unblock: buildbot/2.0.1-2

2019-06-04 Thread Robin Jarry
; urgency=high + + * Fix OAuth module security bypass [CVE-2019-12300] (Closes: #929849) + + -- Robin Jarry Mon, 03 Jun 2019 14:47:25 +0200 + buildbot (2.0.1-1) unstable; urgency=medium * Use scdoc for man pages diff -Nru buildbot-2.0.1/debian/patches/0005-Revert-master-Accept-GitHub

Bug#929965: unblock: buildbot/2.0.1-2

2019-06-04 Thread Robin Jarry
; urgency=high + + * Fix OAuth module security bypass [CVE-2019-12300] (Closes: #929849) + + -- Robin Jarry Mon, 03 Jun 2019 14:47:25 +0200 + buildbot (2.0.1-1) unstable; urgency=medium * Use scdoc for man pages diff -Nru buildbot-2.0.1/debian/patches/0005-Revert-master-Accept-GitHub

Re: [Qemu-devel] -device ipmi-bmc-sim attached to -netdev vde

2019-03-04 Thread Robin Jarry
Hi Corey, Thanks a lot for your detailed answer! 2019-02-19, Corey Minyard: > If you really wanted to do this, you would need to implement the IPMI > LAN protocol inside QEMU and sit it on top of a UDP chardev. It could > then plug into the standard IPMI infrastructure in QEMU. The power >

<    1   2   3   >