[PATCH v3 1/4] pmbus: introduce PMBUS_VIRT_*_SAMPLES registers

2019-04-14 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Those virtual registers can be used to export manufacturer specific functionality for controlling the number of samples for average values reported by the device. Signed-off-by: Krzysztof Adamski --- drivers/hwmon/pmbus/pmbus.h | 15 + drivers/hwmon/pmbus/pmbus_core.c | 110

[PATCH v3 0/4] pmbus: extend configurability via sysfs

2019-04-14 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Hi, This patch series extends pmbus core for two specific use cases we have: - First three patches allows lm25066 driver to set number of samples for average values (by controlling manufacturer specific SAMPLES_FOR_AVG register). It is useful to be able to set this register when using any

Re: [PATCH v2 1/3] pmbus: introduce PMBUS_VIRT_*_SAMPLES registers

2019-04-14 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
On Sun, Apr 14, 2019 at 07:27:47AM -0700, Guenter Roeck wrote: >On 4/13/19 9:03 AM, Adamski, Krzysztof (Nokia - PL/Wroclaw) wrote: >>Those virtual registers can be used to export manufacturer specific >>functionality for controlling the number of samples for average values >>r

Re: [PATCH v2 2/3] lm25066: support SAMPLES_FOR_AVG register

2019-04-14 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
On Sun, Apr 14, 2019 at 07:37:35AM -0700, Guenter Roeck wrote: >On 4/13/19 9:03 AM, Adamski, Krzysztof (Nokia - PL/Wroclaw) wrote: >>Manufacturer specific SAMPLES_FOR_AVG register allows setting the number >>of samples used in computing the average values (PMBUS_VIRT_READ_*_AVG).

[PATCH v2 0/3] pmbus: extend configurability via sysfs

2019-04-13 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Hi, I'm posting updated version of this patchet. I think first two patches implement things in the way that where suggested by Guenter (using PMBUS_VIRT_*). I have to admit, I like this better than using custom sysfs approach from v1. I'm also posting updated version of the patch exporting

[PATCH v2 2/3] lm25066: support SAMPLES_FOR_AVG register

2019-04-13 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Manufacturer specific SAMPLES_FOR_AVG register allows setting the number of samples used in computing the average values (PMBUS_VIRT_READ_*_AVG). The number we write is an exponent of base 2 of the number of samples so for example writing 3 will result in 8 samples average. Signed-off-by:

[PATCH v2 1/3] pmbus: introduce PMBUS_VIRT_*_SAMPLES registers

2019-04-13 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Those virtual registers can be used to export manufacturer specific functionality for controlling the number of samples for average values reported by the device. Signed-off-by: Krzysztof Adamski --- Documentation/hwmon/sysfs-interface | 18 + drivers/hwmon/pmbus/pmbus.h | 15

Re: [PacketFence-users] Dashboard charts

2019-04-13 Thread G PL via PacketFence-users
Hello, You need to start a service. In my memory, its the pfstat service Regards Le vendredi 12 avril 2019, Émile Grenier via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit : > Hi everyone, > > I installed Packetfence in a cluster recently, everything is working fine > but

Re: [PATCH] tty: Add NULL TTY driver

2019-04-12 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
On Fri, Apr 12, 2019 at 01:40:56PM +0200, Enrico Weigelt, metux IT consult wrote: >On 12.04.19 09:30, Adamski, Krzysztof (Nokia - PL/Wroclaw) wrote: > >> Well, that depends. If the program doing those writes expects /dev/console >> to be a tty device, then it cannot be any

Re: [PATCH] tty: Add NULL TTY driver

2019-04-12 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
On Fri, Apr 12, 2019 at 09:17:28AM +0200, Enrico Weigelt, metux IT consult wrote: >On 11.04.19 15:05, Adamski, Krzysztof (Nokia - PL/Wroclaw) wrote: > >> There are (embedded) cases where the kernel ring buffer is stored for> log >> inspection and all the logs that are *no

Re: [PATCH] tty: Add NULL TTY driver

2019-04-11 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
On Fri, Apr 05, 2019 at 02:32:41PM +0200, Enrico Weigelt, metux IT consult wrote: >On 05.04.19 11:00, Vincent Whitchurch wrote: >> On Fri, Apr 05, 2019 at 10:39:43AM +0200, Enrico Weigelt, metux IT consult >> wrote: >>> On 03.04.19 16:11, Vincent Whitchurch wrote: >>> Especially on embedded

Re: [PATCH 2/3] lm25066: export sysfs attribute for SAMPLES_FOR_AVG

2019-04-11 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
On Wed, Apr 10, 2019 at 09:24:29PM -0700, Nicolin Chen wrote: >On Wed, Apr 10, 2019 at 05:55:19PM -0700, Guenter Roeck wrote: > >> > +static ssize_t samples_for_avg_show(struct device *dev, >> > + struct device_attribute *attr, char *buf) >> > +{ >> > + struct

Re: [PATCH 1/3] pmbus: support for custom sysfs attributes

2019-04-11 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
On Wed, Apr 10, 2019 at 05:35:21PM -0700, Guenter Roeck wrote: >On 4/10/19 3:38 PM, Adamski, Krzysztof (Nokia - PL/Wroclaw) wrote: >>This patch makes it possible to pass custom struct attribute_group array >>via the pmbus_driver_info struct so that those can be added to the >

Re: [PATCH 3/3] pmbus: export coefficients via sysfs

2019-04-11 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
On Wed, Apr 10, 2019 at 05:30:08PM -0700, Guenter Roeck wrote: >On 4/10/19 3:39 PM, Adamski, Krzysztof (Nokia - PL/Wroclaw) wrote: >>In order to get best accuracy, in case of some devices it is required to >>tweak coefficient values. This is especially true for devices using >&g

[PATCH 3/3] pmbus: export coefficients via sysfs

2019-04-10 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
In order to get best accuracy, in case of some devices it is required to tweak coefficient values. This is especially true for devices using some external shunt resistor or being operated in non-usual environment. Those values may be measured during device production and stored as calibration

[PATCH 2/3] lm25066: export sysfs attribute for SAMPLES_FOR_AVG

2019-04-10 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Register custom sysfs attribute to be registered by pmbus allowing read/write access to the manufacturer specific SAMPLES_FOR_AVG register. This register allows setting the number of samples used in computing the average values (PMBUS_VIRT_READ_*_AVG). The number we write is an exponent of base 2

[PATCH 0/3] pmbus: extend configurability via sysfs

2019-04-10 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Hi, This patch series extends pmbus core for two specific use cases we have: - First two patches allows lm25066 driver to export custom sysfs entry for controlling manufacturer specific SAMPLES_FOR_AVG register. It is useful to be able to set this register when using any of the *_average

[PATCH 1/3] pmbus: support for custom sysfs attributes

2019-04-10 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
This patch makes it possible to pass custom struct attribute_group array via the pmbus_driver_info struct so that those can be added to the attribute groups passed to hwmon_device_register_with_groups(). This makes it possible to register custom sysfs attributes by PMBUS drivers similar to how

[JIRA] (JENKINS-56923) shell command - id returns not all user's group

2019-04-07 Thread replay...@o2.pl (JIRA)
Title: Message Title Replay . updated

[JIRA] (JENKINS-56923) shell command - id returns not all user's group

2019-04-07 Thread replay...@o2.pl (JIRA)
Title: Message Title Replay . updated

[JIRA] (JENKINS-56923) shell command - id returns not all user's group

2019-04-07 Thread replay...@o2.pl (JIRA)
Title: Message Title Replay . commented

[JIRA] (JENKINS-56923) shell command - id returns not all user's group

2019-04-06 Thread replay...@o2.pl (JIRA)
Title: Message Title Replay . updated an

[JIRA] (JENKINS-56923) shell command - id returns not all user's group

2019-04-06 Thread replay...@o2.pl (JIRA)
Title: Message Title Replay . created an

Re: [PATCH] axxia-i2c: use auto cmd for last message

2019-04-03 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
On Wed, Apr 03, 2019 at 10:54:02PM +0200, Wolfram Sang wrote: >Hi, > >On Thu, Mar 28, 2019 at 11:19:45AM +, Adamski, Krzysztof (Nokia - >PL/Wroclaw) wrote: >> Some recent commits to this driver were trying to make sure the TSS >> interrupt is not generated on busy

Re: [PacketFence-users] Initial Configuration

2019-04-03 Thread G PL via PacketFence-users
Hello, You fix this problem by pushing the maint.pl script Regards or Kenavo Le mercredi 3 avril 2019, Goulwen Jouan via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit : > Hi, I have some problem on a fresh install. > > I have install centos 7. > > I a read the

Re: [PacketFence-users] Initial Configuration

2019-04-03 Thread G PL via PacketFence-users
Sorry, it's pf-maint.pl Le mercredi 3 avril 2019, G PL a écrit : > Hello, > You fix this problem by pushing the maint.pl script > Regards or Kenavo > > > Le mercredi 3 avril 2019, Goulwen Jouan via PacketFence-users < > packetfence-users@lists.sourceforge.net> a é

[PECL-DEV] [PHP-BUG] Bug #77835 [NEW]: PECL fails to install ds-1.2.7

2019-04-03 Thread leslaw dot kopec at dreamlab dot pl
From: leslaw dot kopec at dreamlab dot pl Operating system: Ubuntu 16.04 PHP version: Irrelevant Package: PECL website Bug Type: Bug Bug description:PECL fails to install ds-1.2.7 Description: I'm trying to install ds version 1.2.7 I'm getting

[PATCH] axxia-i2c: use auto cmd for last message

2019-03-28 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Some recent commits to this driver were trying to make sure the TSS interrupt is not generated on busy system due to 25ms timer expiring between commands. It can still happen, however if STOP command is not issued on time at the end of the transmission. If wait_for_completion in

Re: [PacketFence-users] 802.1x + Active Directory on Wired Lan

2019-03-27 Thread G PL via PacketFence-users
Hello, In fact you want to Accept or deny in radius and fallback in guest if it's a deny answer. Before the answer, the port is closed. All depend of your switch model. I have a switch model than work as I said before and a lot of cisco switch than have the dynamic vlan assignement and acl feature

Re: [PacketFence-users] it is not possible to go through the configuration wizard

2019-03-25 Thread G PL via PacketFence-users
It's name is pf-maint.pl Regards Le lundi 25 mars 2019, G PL a écrit : > Hello, > Perhaps a call to the maintenance script could fix your problem. > Regards > > Le lundi 25 mars 2019, Mickael BOUBALA via PacketFence-users < > packetfence-users@lists.sourceforge.n

Re: director in rings

2019-03-07 Thread Maciej Milaszewski IQ PL via dovecot
14.26, Maciej Milaszewski IQ PL via dovecot wrote: >> Hi >> Maby stupid question :) >> >> It possible to have 3 directors (frontend) >> but without rings ? >> >> All directors connect to this same dovecot (backend) - all backad have >> this same log

Re: [PacketFence-users] Wrong VLAN / IP Address assigned to Client

2019-03-06 Thread G PL via PacketFence-users
Good subject. I am not a specialist but in my configuration (routed out of band), the dhcp service of PF is for isolation or registration. The registration role is only for the "no 8021x captif portal". On my access vlan, I have an other dhcp server. You can do a "sh auth session" on the switch

director in rings

2019-03-06 Thread Maciej Milaszewski IQ PL via dovecot
Hi Maby stupid question :) It possible to have 3 directors (frontend) but without rings ? All directors connect to this same dovecot (backend) - all backad have this same login_trusted_networks -- Maciej Miłaszewski IQ PL Sp. z o.o. Starszy Administrator Systemowy

Re: [PacketFence-users] Confirm that PF can be used to do 802.1x with VLAN and in-line

2019-03-05 Thread G PL via PacketFence-users
Hello, I don't know your hardware but it's probably more easier to use the client isolation feature on the AP. Regards Le mercredi 6 mars 2019, Tony W via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit : > Hi there, > > After having played around with PF and read heaps of

[Bug go/86535] FreeBSD/PowerPC64 - Building Go Frontend support for gcc 7.3.0 fails

2019-03-03 Thread pkubaj at anongoth dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86535 --- Comment #17 from Piotr Kubaj --- Since you mentioned libgo/runtime_sysinfo.go, I also had a look there and saw that umtx_time is already present there: type __umtx_time struct { _timeout timespec; _flags uint32; _clockid uint32; } const

[Bug go/86535] FreeBSD/PowerPC64 - Building Go Frontend support for gcc 7.3.0 fails

2019-03-03 Thread pkubaj at anongoth dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86535 --- Comment #16 from Piotr Kubaj --- (In reply to Ian Lance Taylor from comment #15) > I committed a patch that should fix the nanotime problem. > > Some of the other issues you describe will most likely require a fix in the >

[Bug bootstrap/89494] Bootstrap error when using GCC 4.2.1

2019-03-01 Thread pkubaj at anongoth dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89494 --- Comment #11 from Piotr Kubaj --- Hm, sorry, I copied the Entering directive from a line before. Nevertheless, setting -O1 helps with GCC 7 and 8. But building GCC 9 still fails (I'm testing the newest snapshot). I tried both -O0 and -O1.

[Bug bootstrap/89494] Bootstrap error when using GCC 4.2.1

2019-02-26 Thread pkubaj at anongoth dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89494 --- Comment #7 from Piotr Kubaj --- It still crashes (test was done with 7.4.0), but we're getting somewhere. It crashes at: libtool: compile: /usr/local/poudriere/ports/default/lang/gcc7/work/.build/./gcc/xgcc -shared-libgcc

[Bug bootstrap/89494] Bootstrap error when using GCC 4.2.1

2019-02-26 Thread pkubaj at anongoth dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89494 --- Comment #6 from Piotr Kubaj --- (In reply to Richard Biener from comment #5) > So it looks like stage1 gcc is miscompiled somehow. I wonder if you can > avoid > setting CFLAGS et al? I just added CFLAGS+=-O0 and CXXFLAGS+=-O0. For now, the

[Bug bootstrap/89494] Bootstrap error when using GCC 4.2.1

2019-02-25 Thread pkubaj at anongoth dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89494 --- Comment #4 from Piotr Kubaj --- Sorry, that was for a build with GCC 6. A build with GCC 4.2.1 is done with the following. Configure: /usr/bin/env CC="cc" CPP="cpp" CXX="c++" CFLAGS="-O2 -pipe -DLIBICONV_PLUG -fno-strict-aliasing "

[Bug bootstrap/89494] Bootstrap error when using GCC 4.2.1

2019-02-25 Thread pkubaj at anongoth dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89494 --- Comment #3 from Piotr Kubaj --- Make is executed with: /usr/bin/env PERL_USE_UNSAFE_INC=1 XDG_DATA_HOME=/usr/local/poudriere/ports/default/lang/gcc9-devel/work XDG_CONFIG_HOME=/usr/local/poudriere/ports/default/lang/gcc9-devel/work

[Bug bootstrap/89494] Bootstrap error when using GCC 4.2.1

2019-02-25 Thread pkubaj at anongoth dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89494 --- Comment #2 from Piotr Kubaj --- I compile from FreeBSD ports tree (just change the port's Makefile not to use external (newer) GCC, but the in-base 4.2.1), so it adds some environment variables. /usr/bin/env CC="g cc6" CPP="cpp6" CXX="g++6"

[Bug go/86535] FreeBSD/PowerPC64 - Building Go Frontend support for gcc 7.3.0 fails

2019-02-25 Thread pkubaj at anongoth dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86535 Piotr Kubaj changed: What|Removed |Added CC||pkubaj at anongoth dot pl --- Comment #13

Re: [PacketFence-users] Graphs not populating

2019-02-25 Thread G PL via PacketFence-users
Hello, i have the same issue. After restart the 2 services with the web interface, all the graphs are present (the pfstats service was stopped when i restart the service on the interface). Thanks Nicolas for the solution. Le lun. 25 févr. 2019 à 16:30, Max McGrath via PacketFence-users <

[Bug bootstrap/89494] New: Bootstrap error when using GCC 4.2.1

2019-02-25 Thread pkubaj at anongoth dot pl
Assignee: unassigned at gcc dot gnu.org Reporter: pkubaj at anongoth dot pl Target Milestone: --- I use FreeBSD on powerpc64 architecture, which has GCC 4.2.1 as a system compiler. It does support C++98 which, according to https://gcc.gnu.org/install/prerequisites.html is enough

[PacketFence-users] Suggestions about configuration

2019-02-22 Thread G PL via PacketFence-users
Hello, You can see in the documentation the routed network for help you. In my opinion, you need to create all vlan on all switch with helper-adress on isolation and register vlan. You need also to create the registration and isolation vlan on the packetfence's switch to listen the dhcp. Regards

Re: [PacketFence-users] Modifying Captive Portal Text

2019-02-22 Thread G PL via PacketFence-users
Hello, I don't think you have to modify the original text. Look on a other language how the text is transla ted. I think you have to made a translation ( in the same language). Le vendredi 22 février 2019, Lierman, Andrew via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit :

[PacketFence-users] Preview Captive Portal

2019-02-14 Thread G PL via PacketFence-users
Hello, it's not the IP management. It's a simulation of the client IP with a fake mac address. Regards Le jeudi 14 février 2019, Caique Araujo via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit : > Dear, > > > I'm deploying the configuration mode with web-auth, when testing

problem witht working director

2019-02-13 Thread Maciej Milaszewski IQ PL via dovecot
Hi I have dovecot director with 2-3 ring and 4 dovecot My ring is : 10.0.100.2  9090 right never   synced  8   37305225 39763861 0    723   2019-02-13 16:02:04 2019-02-13 16:02:04  10.0.100.3  9090 left  never   synced  8  

alterstorage for archiv

2019-02-07 Thread Maciej Milaszewski IQ PL via dovecot
Hi I have a testing lab with: debian10 + dovecot-2.2.33 (director) and one backaned with 2.2.33.2 mail_location = maildir:~/Maildir:INDEX=/var/dovecot_indexes%h All works fine but I thinking now about solutions to moved all messeges older by (14day) to my alter storage with poor disk to folder

[Bug c/89107] New: -Wconversion warning is not appropriate since conversion doesn't alter value, because of mask entered before.

2019-01-29 Thread mareksz1958 at wp dot pl
Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: mareksz1958 at wp dot pl Target Milestone: --- Such code is failing to compile on 2): union U { unsigned int a:20

jmap

2019-01-25 Thread Maciej Milaszewski IQ PL
Hi Is there any chance that Dovecot-2.2.36 supports "jmap" ? -- Maciej Miłaszewski IQ PL Sp. z o.o. Starszy Administrator Systemowy Biuro Obsługi Klienta: e-mail: b...@iq.pl tel.: +48 58 326 09 90 - 94 fax: +48 58 326 09 99 Dział pomocy: https://www.iq.pl/pomoc Informacja

Re: debian10+dovecot-2.2.33.2

2019-01-24 Thread Maciej Milaszewski IQ PL
Hi All works fine :) Thanks a lot Aki :) On 24.01.2019 19:59, Aki Tuomi wrote: > Another known issue, fixed with > > https://github.com/dovecot/core/commit/ca4c2579f0456072bdb505932a9cf7602e42afd2.patch > > Aki > >> On 24 January 2019 at 20:54 Maciej Milaszewski IQ PL

Re: debian10+dovecot-2.2.33.2

2019-01-24 Thread Maciej Milaszewski IQ PL
-p 664 strace: Process 664 attached gettimeofday({tv_sec=1548355306, tv_usec=938191}, NULL) = 0 On 24.01.2019 19:34, Maciej Milaszewski IQ PL wrote: > Hi > Thenx for replay - problem solved :) > > I forget `autoreconf -vi` > > You are rox :) > >  On 24.01.2019 19:10, A

Re: debian10+dovecot-2.2.33.2

2019-01-24 Thread Maciej Milaszewski IQ PL
Hi Thenx for replay - problem solved :) I forget `autoreconf -vi` You are rox :)  On 24.01.2019 19:10, Aki Tuomi wrote: > You need to do `autoreconf -vi` before configure, won't work otherwise. > > Aki > >> autoreconf -viOn 24 January 2019 at 20:09 Maciej Milaszewsk

Re: debian10+dovecot-2.2.33.2

2019-01-24 Thread Maciej Milaszewski IQ PL
Hi Thenx. I use your patch but problem not solved. Hunk #1 succeeded at 334 with fuzz 2 (offset 19 lines). patching file src/auth/mycrypt.c ./configure --prefix=/usr/local/dovecot-2.2.36 --sysconfdir=/etc --with-ldap=yes --with-mysql --with-ssl=openssl --with-solr --with-storages=maildir,imapc

Re: debian10+dovecot-2.2.33.2

2019-01-24 Thread Maciej Milaszewski IQ PL
    mod_set =     services = #4  main (argc=, argv=) at main.c:396     c = On 24.01.2019 18:16, Aki Tuomi wrote: > Try > > gdb /usr/local/dovecot/libexec/dovecot/auth /var/run/dovecot/core > bt full > > Aki >> On 24 January 2019 at 18:53 Maciej Milasze

Re: debian10+dovecot-2.2.33.2

2019-01-24 Thread Maciej Milaszewski IQ PL
e? > > https://dovecot.org/bugreport.html > > Aki >> On 24 January 2019 at 17:10 Maciej Milaszewski IQ PL < >> maciej.milaszew...@iq.pl <mailto:maciej.milaszew...@iq.pl>> wrote: >> >> >> Hi >> Thenx for replay. >> >> Fin

Re: debian10+dovecot-2.2.33.2

2019-01-24 Thread Maciej Milaszewski IQ PL
: > Maybe you should try 2.2.36? > > Aki > > On 22.1.2019 16.47, Maciej Milaszewski IQ PL wrote: >> Hi >> I have little problem with debian10 and dovecot 2.2.33.2 >> >> ps -ax >> 21815 ?    S  0:00 dovecot/pop3-login director >> 21816 ?    S 

[JIRA] (JENKINS-49601) Triggering downstream pipeline from a replayed one ends in a NullPointerException

2019-01-23 Thread goostl...@o2.pl (JIRA)
Title: Message Title Marcin Kłopotek

[JIRA] (JENKINS-49601) Triggering downstream pipeline from a replayed one ends in a NullPointerException

2019-01-23 Thread goostl...@o2.pl (JIRA)
Title: Message Title Marcin Kłopotek

[JIRA] (JENKINS-49601) Triggering downstream pipeline from a replayed one ends in a NullPointerException

2019-01-23 Thread goostl...@o2.pl (JIRA)
Title: Message Title Marcin Kłopotek

[JIRA] (JENKINS-49601) Triggering downstream pipeline from a replayed one ends in a NullPointerException

2019-01-23 Thread goostl...@o2.pl (JIRA)
Title: Message Title Marcin Kłopotek

debian10+dovecot-2.2.33.2

2019-01-22 Thread Maciej Milaszewski IQ PL
cot/dovecot.conf # Pigeonhole version 0.4.8 (0c4ae064f307+) # OS: Linux 4.19.0-1-amd64 x86_64 Debian buster/sid auth_cache_negative_ttl = 5 mins Probably dovecot not closed correctly imap-login and this same for imap-pop3. Any idea ? -- Maciej Miłaszewski IQ PL Sp. z o.o. Starszy Administra

Find and display gif file/s in web browser, according to the passed string, compared to files names in the folder.

2019-01-21 Thread pe...@o2.pl
Dear Programmers, I would like to ask you to write a program/script in Python 3.7 working at Windows 10 and Debian 9.x, according to the scenario: 1). The User in the console is writing the command and a text parameter, e.g.: "d Adam" 2). Script/program "d" assigns value "Adam" to variable

Re: [fr-users] [Draw]Centrer une boite de texte dans une page

2019-01-20 Thread PL
Merci Ysabeau, Dans une page il y a par ex. 42 mots qu'il faudra mettre dans 42 pdf différents, un premier essais sur cette page me mets le premier mot dans un cadre avec une marge au dessus que je n'arrive pas à changer. Dans la page où il y a tous les mots, j'ai sélectionné mon 1er mot, menu

Re: [fr-users] [Draw]Centrer une boite de texte dans une page

2019-01-20 Thread PL
Merci Sandy pour votre réponse, ça aurait pu être une bonne idée, mais : - Dans le document Writer qui à servit à créer les pages pdf, les mots, dont les lettres sont de dif. couleur et certaines sont en gras, sont séparés dans la page par une/plusieurs espaces, une ou plusieurs tabulations

[fr-users] [Draw]Centrer une boite de texte dans une page

2019-01-18 Thread PL
Bonjour et bonne année à toutes zé à tous, Je dois créer environ 500 pdf (pour un imprimeur) ne contenant chacun qu'un mot ou lettre/groupes de lettres,  tout ce "petit monde" est dans 16 pages crées dans Writer et exportées en pdf. Les lettres de ces mots ont différentes couleurs. Pour

doveadm + HA

2019-01-07 Thread Maciej Milaszewski IQ PL
Hi I have two server directors in ring and 5 dovecot servers (2.2.36) IP for IMAP and POP3 is a VIP (keepalived) What is the best solutions to get realy HA for 5 dovecot servers ? Maby corosync+pacemeker ? But this solution is too problematic and hardcore Why I need HA ? Doveadmin is too lazy

Re: [fr-users] LibreOffice 6 : encadrement caractères (avec la pièce jointe)

2019-01-06 Thread PL
Bonjour, Avec LO Version: 5.4.7.2 (x64), nul n'est parfait, ja'ttends que la version 6 soit bien stabilisée. Un essais sur votre txt (téléchargé par Framadrop) donne le même problème en début de ligne, mais si vous faites un couper et coller dans un éditeur de txt TextPad ou notePad++,

[JIRA] (JENKINS-55392) java.util.concurrent.RejectedExecutionException AGAIN

2019-01-03 Thread dpacierp...@o2.pl (JIRA)
Title: Message Title Damian Pacierpnik

[Bug lto/88516] Internal LTO error when linking against static libSFML

2018-12-29 Thread krzysio.kurek at wp dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88516 krzysio.kurek at wp dot pl changed: What|Removed |Added Status|WAITING |RESOLVED Resolution

[JIRA] (JENKINS-55322) Jenkins' message about JENKINS_HOME is too vague, on the verge of being misleading.

2018-12-24 Thread barte...@o2.pl (JIRA)
Title: Message Title Bartosz Błaszkiewicz

Re: [PacketFence-users] 802.1X TTLS PAP ... does it works ?

2018-12-20 Thread G PL via PacketFence-users
You have filtered to wireless-noeap than is mac auth. 8021x is witeless-eap Le jeudi 20 décembre 2018, Enrico Becchetti via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit : > Hi all, > I again ask in this mailing list to finish the setup of my PacketFence > server. I'm

Re: [PacketFence-users] SMS for missing providers

2018-12-20 Thread G PL via PacketFence-users
No Le mer. 19 déc. 2018 à 07:17, Wifi Guy via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit : > Any other way to do it that’s easier? Like conf file > > On Tue, 18 Dec 2018 at 13:57, G PL via PacketFence-users < > packetfence-users@lists.sourceforge

Re: [PacketFence-users] SMS for missing providers

2018-12-18 Thread G PL via PacketFence-users
écrit : > This is the error > > > [root@PF-NAC ~]# mysql -upf -p pf > > Enter password: > > ERROR 1045 (28000): Access denied for user 'pf'@'localhost' (using > password: YES) > > On Tue, 18 Dec 2018 at 02:20, G PL via PacketFence-users < > packetfence-users@lists.so

Re: [PacketFence-users] SMS for missing providers

2018-12-17 Thread G PL via PacketFence-users
it within the SQL database? Or can you do via some > other method? Im network engineer not programmer, some steps would really > help. > > Thanks. > > On Mon, 17 Dec 2018 at 09:25, G PL via PacketFence-users < > packetfence-users@lists.sourceforge.net> wrote: > >>

Re: [PacketFence-users] SMS for missing providers

2018-12-17 Thread G PL via PacketFence-users
You need to add your provider with the good synthax in the sms_carrier table. %s is the phone number Le dim. 16 déc. 2018 à 17:54, Wifi Guy via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit : > Cool. How do I add that? > > On Sun, 16 Dec 2018 at

[PacketFence-users] SMS for missing providers

2018-12-16 Thread G PL via PacketFence-users
https://fastsms.co.uk/solutions/email-to-sms.html Le vendredi 14 décembre 2018, Wifi Guy via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit : > Its doesnt look like providers have this service anymore? In the UK i > check for vodafone and EE and both have no SMTP to SMS

[Bug lto/88516] Internal LTO error when linking against static libSFML

2018-12-15 Thread krzysio.kurek at wp dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88516 --- Comment #2 from krzysio.kurek at wp dot pl --- Created attachment 45243 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=45243=edit preprocessed file Oh I just noticed that the preprocessed file didn't get attached.

[Bug lto/88516] Internal LTO error when linking against static libSFML

2018-12-15 Thread krzysio.kurek at wp dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88516 --- Comment #1 from krzysio.kurek at wp dot pl --- I'm afraid this is as minimal as it gets. Should I set up a git repo with all sources needed to reproduce the error?

[Bug lto/88516] New: Internal LTO error when linking against static libSFML

2018-12-15 Thread krzysio.kurek at wp dot pl
Component: lto Assignee: unassigned at gcc dot gnu.org Reporter: krzysio.kurek at wp dot pl CC: marxin at gcc dot gnu.org Target Milestone: --- sysinfo: gcc (SUSE Linux) 8.2.1 20181108 [gcc-8-branch revision 265914] OpenSUSE Tumbleweed 20181213 GCC configuration

[PATCH v2] i2c: axxia: support sequence command mode

2018-12-13 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
In order to comply with SMBus specification, the Axxia I²C module will abort the multi message transfer if the delay between finishing sending one message and starting another is longer than 25ms. Unfortunately it isn't that hard to trigger this situation on a busy system. In order to fix this

[Bug target/87370] [7/8/9 Regression] Inefficient return code of struct values

2018-12-12 Thread trashyankes at wp dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87370 --- Comment #12 from trashyankes at wp dot pl --- (In reply to H.J. Lu from comment #11) > (In reply to trashyankes from comment #10) > > Which GCC are you using? GCC 8.2 generates: GCC Explorer :D g++ (GCC-Explorer-Build) 9.0.0

Re: [PacketFence-users] Applying correct VLAN to users

2018-12-11 Thread G PL via PacketFence-users
Hello, I have find the solution for me in this post https://github.com/inverse-inc/packetfence/issues/2291 In my first post, i'm using IAP 105. For IAP 305, i have modified the Aruba.pm (it's works on the 2 IAP models) and restart packetfence. *I don't use COA in the switch configuration* The

[Bug gold/23338] Segfault in output.h, line 374

2018-12-11 Thread marcin at helix dot pl
https://sourceware.org/bugzilla/show_bug.cgi?id=23338 Marcin Mikula changed: What|Removed |Added CC||marcin at helix dot pl -- You

[PATCH] MAINTAINERS: add entry for i2c-axxia driver

2018-12-11 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Create separate entry for i2c-axxia and set myself as maintainer. Even though I don't work for Intel/LSI who is the manufacturer of this IP, I do have access to some documentation and the actual hardware using this driver and I'm familiar with the code. Signed-off-by: Krzysztof Adamski ---

[PATCH 3/3] i2c-axxia: support sequence command mode

2018-12-10 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
In order to comply with SMBus specification, the Axxia I²C module will abort the multi message transfer if the delay between finishing sending one message and starting another is longer than 25ms. Unfortunately it isn't that hard to trigger this situation on a busy system. In order to fix this

[PATCH 2/3] i2c-axxia: check for error conditions first

2018-12-10 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
It was observed that when using seqentional mode contrary to the documentation, the SS bit (which is supposed to only be set if automatic/sequence command completed normally), is sometimes set together with NA (NAK in address phase) causing transfer to falsely be considered successful. My

[PATCH 1/3] i2c-axxia: dedicated function to set client addr

2018-12-10 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
This patch moves configuration of hardware registers used for setting i2c client address to separate function. It is preparatory change for next commit. Signed-off-by: Krzysztof Adamski --- drivers/i2c/busses/i2c-axxia.c | 29 ++--- 1 file changed, 18 insertions(+), 11

[PATCH 0/3] i2c-axxia: support Sequence command

2018-12-10 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Hi Woflram, This patch was based on your i2c/for-current branch as it adds to my patch you incuded there. First two patches are just preparations and the 3rd one which is the actual change. It allows us using hardware mode to send i2c transfers consisting for a write followed by read without the

[Bug target/87370] [7/8/9 Regression] Inefficient return code of struct values

2018-12-09 Thread trashyankes at wp dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87370 --- Comment #10 from trashyankes at wp dot pl --- (In reply to H.J. Lu from comment #9) > Fixed for GCC 9, GCC 8.3 and GCC 7.4. One question, I look on test case and see: ``` f1(): xor eax, eax xor edx, edx

Re: [onap-discuss] [clamp] [policy]closed loop distribution error

2018-12-05 Thread Krysiak, Adam (Nokia - PL/Wroclaw)
Hi, It's an issue inside Policy component. On PAP container there is script called push-policies.sh. It is responsible for creating initial policies in Policy. The problem is that in first step this script tries to download drools rule template. Unfortunately folder where it's located

Re: [PacketFence-users] Applying correct VLAN to users

2018-12-03 Thread G PL via PacketFence-users
Hello, I 'm testing Packetfence and have the same issue. I think to have find the solution. Very simple: Desactivate CoA Regards Le jeudi 29 novembre 2018, Bram Wittendorp via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit : > Hi, > > > > Since a month we are using

[onap-discuss] [policy] DMaaP policy triggering issue

2018-12-03 Thread Krysiak, Adam (Nokia - PL/Wroclaw)
Hi, I'm trying to perform Closed Loop scenario on Casablanca lab. I'm on step where policy should be triggered but nothing happens. I see that TCA is sending events on DMaaP unauthenticated.DCAE_CL_OUTPUT topic correctly. They are even consumed by group/user

Re: [PATCH] i2c-axxia: properly handle master timeout

2018-12-03 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Hi W dniu 27.11.2018 o 13:26, Wolfram Sang pisze: > On Fri, Nov 16, 2018 at 01:24:41PM +, Adamski, Krzysztof (Nokia - > PL/Wroclaw) wrote: >> According to Intel (R) Axxia TM Lionfish Communication Processor >> Peripheral Subsystem Hardware Reference Manual, the AXXIA

Re: [PATCH] i2c-axxia: properly handle master timeout

2018-12-03 Thread Adamski, Krzysztof (Nokia - PL/Wroclaw)
Hi W dniu 27.11.2018 o 13:26, Wolfram Sang pisze: > On Fri, Nov 16, 2018 at 01:24:41PM +, Adamski, Krzysztof (Nokia - > PL/Wroclaw) wrote: >> According to Intel (R) Axxia TM Lionfish Communication Processor >> Peripheral Subsystem Hardware Reference Manual, the AXXIA

Re: [onap-discuss] [appc] [Casablanca] Error while Submitting Configure request via DMaaP (Rule executor not available, initialization of RequestValidationPolicy failed)

2018-11-28 Thread Krysiak, Adam (Nokia - PL/Wroclaw)
@lists.onap.org; Krysiak, Adam (Nokia - PL/Wroclaw); vn00569...@techmahindra.com; MAHER, RANDA Cc: Chandrashekhar Thakare Subject: RE: [onap-discuss] [appc] [Casablanca] Error while Submitting Configure request via DMaaP (Rule executor not available, initialization of RequestValidationPolicy failed

Re: [PacketFence-users] Portal Captive

2018-11-23 Thread G PL via PacketFence-users
tFence-users a écrit : > > On 2018-11-23 8:30 AM, G PL via PacketFence-users wrote: > > I dry a little bit. > > Better not use PacketFence when you're all wet. > > -- > Ludovic marcottelmarco...@inverse.ca :: +1.514.755.3630 :: > https://inverse.ca > Inverse

Re: [PacketFence-users] Portal Captive

2018-11-23 Thread G PL via PacketFence-users
I'm from britany, i don't have the choice;) Le ven. 23 nov. 2018 à 15:09, Ludovic Marcotte via PacketFence-users < packetfence-users@lists.sourceforge.net> a écrit : > On 2018-11-23 8:30 AM, G PL via PacketFence-users wrote: > > I dry a little bit. > > Better not use Packet

<    1   2   3   4   5   6   7   8   9   10   >