[resending reply to linux-wireless] On Thu, Jun 15, 2017 at 05:40:01PM +0300, Kalle Valo wrote: > Michał Mirosław <mirq-linux@xxxxxxxxxxxx> writes: > > > On Wed, Jun 14, 2017 at 07:58:35AM +0300, Kalle Valo wrote: > >> Michał Mirosław <mirq-linux@xxxxxxxxxxxx> writes: > >> > This fixes spin-forever in irq handler when IRQ is already asserted > >> > at request_irq() time. > >> > > >> > Signed-off-by: Michał Mirosław <mirq-linux@xxxxxxxxxxxx> > >> > >> Your name in patchwork is broken: > >> > >> https://patchwork.kernel.org/patch/9784251/ > >> > >> You could try to fix it by registering as then you have (onetime) option > >> to provide your full name. > > > > Doesn't like UTF-8? > > patchwork.kernel.org was updated something like a year ago to get proper > UTF-8 support and I have been succesfully applied patches from Rafal who > also uses UTF-8 with his name: > > git log --author rafal@xxxxxxxxxx drivers/net/wireless/ > > You could always compare his posts with yours and see what you do > differently. Here's one example: > > https://patchwork.kernel.org/patch/9640743/ > > > Registration didn't help though. > > Darn. This time I can manually apply the patch but for the future we > should try to solve this. Looks like my name, as known by Patchwork, got doubly UTF-8-encoded: # this is how it is in From header in Patchwork: $ echo TWljaGHDheKAmiBNaXJvc8OF4oCaYXc=|base64 -d|hexdump -C 00000000 4d 69 63 68 61 c3 85 e2 80 9a 20 4d 69 72 6f 73 |Micha..... Miros| 00000010 c3 85 e2 80 9a 61 77 |.....aw| 00000017 # this is how it should look like: $ echo -n 'Michał Mirosław'|hexdump -C 00000000 4d 69 63 68 61 c5 82 20 4d 69 72 6f 73 c5 82 61 |Micha.. Miros..a| 00000010 77 |w| Best Regards, Michał Mirosław