All of lore.kernel.org
 help / color / mirror / Atom feed
* unsubscribe
@ 2019-03-07 14:15 Punky
  0 siblings, 0 replies; 122+ messages in thread
From: Punky @ 2019-03-07 14:15 UTC (permalink / raw)
  To: openembedded-devel

-- 
-- 

Regards,
Kim-man "Punky" Tse

* Open Source Embedded Solutions and Systems
  - Voyage Linux (http://linux.voyage.hk)
  - Voyage MPD   (http://linux.voyage.hk/voyage-mpd)
  - Voyage MuBox (http://mubox.voyage.hk)
* Voyage Store   (http://store.voyage.hk)


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

* unsubscribe
  2024-04-03  8:04 ` [PATCH v5 04/22] drivers/perf: riscv: Use BIT macro for shifting operations Atish Patra
@ 2024-04-03 15:57   ` jonathan.oleson
  0 siblings, 0 replies; 122+ messages in thread
From: jonathan.oleson @ 2024-04-03 15:57 UTC (permalink / raw)
  To: linux-kernel

unsubscribe

Jonathan Oleson

Talent Acquisition | Seattle
linkedin.com/in/jonathanoleson/
jonathan.oleson@bytedance.com



-----Original Message-----
From: Atish Patra <atishp@rivosinc.com> 
Sent: Wednesday, April 3, 2024 1:05 AM
To: linux-kernel@vger.kernel.org
Cc: Atish Patra <atishp@rivosinc.com>; Ajay Kaher <akaher@vmware.com>;
Alexandre Ghiti <alexghiti@rivosinc.com>; Alexey Makhalov
<amakhalov@vmware.com>; Andrew Jones <ajones@ventanamicro.com>; Anup Patel
<anup@brainfault.org>; Conor Dooley <conor.dooley@microchip.com>; Juergen
Gross <jgross@suse.com>; kvm-riscv@lists.infradead.org; kvm@vger.kernel.org;
linux-kselftest@vger.kernel.org; linux-riscv@lists.infradead.org; Mark
Rutland <mark.rutland@arm.com>; Palmer Dabbelt <palmer@dabbelt.com>; Paolo
Bonzini <pbonzini@redhat.com>; Paul Walmsley <paul.walmsley@sifive.com>;
Shuah Khan <shuah@kernel.org>; virtualization@lists.linux.dev; VMware
PV-Drivers Reviewers <pv-drivers@vmware.com>; Will Deacon <will@kernel.org>;
x86@kernel.org
Subject: [External] [PATCH v5 04/22] drivers/perf: riscv: Use BIT macro for
shifting operations

It is a good practice to use BIT() instead of (1UL << x).
Replace the current usages with BIT().

Signed-off-by: Atish Patra <atishp@rivosinc.com>
---
 arch/riscv/include/asm/sbi.h | 20 ++++++++++----------
drivers/perf/riscv_pmu_sbi.c |  2 +-
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/arch/riscv/include/asm/sbi.h b/arch/riscv/include/asm/sbi.h
index ef8311dafb91..4afa2cd01bae 100644
--- a/arch/riscv/include/asm/sbi.h
+++ b/arch/riscv/include/asm/sbi.h
@@ -233,20 +233,20 @@ enum sbi_pmu_ctr_type {  #define
SBI_PMU_EVENT_IDX_INVALID 0xFFFFFFFF
 
 /* Flags defined for config matching function */
-#define SBI_PMU_CFG_FLAG_SKIP_MATCH	(1 << 0)
-#define SBI_PMU_CFG_FLAG_CLEAR_VALUE	(1 << 1)
-#define SBI_PMU_CFG_FLAG_AUTO_START	(1 << 2)
-#define SBI_PMU_CFG_FLAG_SET_VUINH	(1 << 3)
-#define SBI_PMU_CFG_FLAG_SET_VSINH	(1 << 4)
-#define SBI_PMU_CFG_FLAG_SET_UINH	(1 << 5)
-#define SBI_PMU_CFG_FLAG_SET_SINH	(1 << 6)
-#define SBI_PMU_CFG_FLAG_SET_MINH	(1 << 7)
+#define SBI_PMU_CFG_FLAG_SKIP_MATCH	BIT(0)
+#define SBI_PMU_CFG_FLAG_CLEAR_VALUE	BIT(1)
+#define SBI_PMU_CFG_FLAG_AUTO_START	BIT(2)
+#define SBI_PMU_CFG_FLAG_SET_VUINH	BIT(3)
+#define SBI_PMU_CFG_FLAG_SET_VSINH	BIT(4)
+#define SBI_PMU_CFG_FLAG_SET_UINH	BIT(5)
+#define SBI_PMU_CFG_FLAG_SET_SINH	BIT(6)
+#define SBI_PMU_CFG_FLAG_SET_MINH	BIT(7)
 
 /* Flags defined for counter start function */ -#define
SBI_PMU_START_FLAG_SET_INIT_VALUE (1 << 0)
+#define SBI_PMU_START_FLAG_SET_INIT_VALUE BIT(0)
 
 /* Flags defined for counter stop function */ -#define
SBI_PMU_STOP_FLAG_RESET (1 << 0)
+#define SBI_PMU_STOP_FLAG_RESET BIT(0)
 
 enum sbi_ext_dbcn_fid {
 	SBI_EXT_DBCN_CONSOLE_WRITE = 0,
diff --git a/drivers/perf/riscv_pmu_sbi.c b/drivers/perf/riscv_pmu_sbi.c
index babf1b9a4dbe..a83ae82301e3 100644
--- a/drivers/perf/riscv_pmu_sbi.c
+++ b/drivers/perf/riscv_pmu_sbi.c
@@ -386,7 +386,7 @@ static int pmu_sbi_ctr_get_idx(struct perf_event *event)
 			cmask = 1;
 		} else if (event->attr.config == PERF_COUNT_HW_INSTRUCTIONS)
{
 			cflags |= SBI_PMU_CFG_FLAG_SKIP_MATCH;
-			cmask = 1UL << (CSR_INSTRET - CSR_CYCLE);
+			cmask = BIT(CSR_INSTRET - CSR_CYCLE);
 		}
 	}
 
--
2.34.1




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

* unsubscribe
@ 2024-02-14 20:51 Igor Andreev
  0 siblings, 0 replies; 122+ messages in thread
From: Igor Andreev @ 2024-02-14 20:51 UTC (permalink / raw)
  To: linux-sh



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

* unsubscribe
@ 2024-01-15  8:19 limin yin
  0 siblings, 0 replies; 122+ messages in thread
From: limin yin @ 2024-01-15  8:19 UTC (permalink / raw)
  To: bpf



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

* unsubscribe
@ 2023-12-13 17:30 Hank Barta
  0 siblings, 0 replies; 122+ messages in thread
From: Hank Barta @ 2023-12-13 17:30 UTC (permalink / raw)
  To: linux-gpio

unsubscribe

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

* unsubscribe
@ 2023-11-25 16:50 Emmanuel ALLAUD
  0 siblings, 0 replies; 122+ messages in thread
From: Emmanuel ALLAUD @ 2023-11-25 16:50 UTC (permalink / raw)
  To: linux-media



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

* unsubscribe
@ 2023-06-20  6:46 Yao Yongxian
  0 siblings, 0 replies; 122+ messages in thread
From: Yao Yongxian @ 2023-06-20  6:46 UTC (permalink / raw)
  To: xenomai


unsubscribe

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

* unsubscribe
  2023-05-04  4:23   ` Henry Wang
@ 2023-05-04  5:56     ` Terry Yang
  0 siblings, 0 replies; 122+ messages in thread
From: Terry Yang @ 2023-05-04  5:56 UTC (permalink / raw)
  Cc: xen-devel

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

Henry Wang <Henry.Wang@arm.com>于2023年5月4日 周四12:23写道:

> Hi Vikram,
>
> > -----Original Message-----
> > Subject: [XEN][PATCH v6 08/19] xen/device-tree: Add
> > device_tree_find_node_by_path() to find nodes in device tree
> >
> > Add device_tree_find_node_by_path() to find a matching node with path for
> > a
> > dt_device_node.
> >
> > Reason behind this function:
> >     Each time overlay nodes are added using .dtbo, a new fdt(memcpy of
> >     device_tree_flattened) is created and updated with overlay nodes.
> This
> >     updated fdt is further unflattened to a dt_host_new. Next, we need
> to find
> >     the overlay nodes in dt_host_new, find the overlay node's parent in
> dt_host
> >     and add the nodes as child under their parent in the dt_host. Thus
> we need
> >     this function to search for node in different unflattened device
> trees.
> >
> > Also, make dt_find_node_by_path() static inline.
> >
> > Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
> > ---
> >  xen/common/device_tree.c      |  5 +++--
> >  xen/include/xen/device_tree.h | 17 +++++++++++++++--
> >  2 files changed, 18 insertions(+), 4 deletions(-)
> >
>
> [...]
>
> >  /**
> > - * dt_find_node_by_path - Find a node matching a full DT path
> > + * device_tree_find_node_by_path - Generic function to find a node
> > matching the
> > + * full DT path for any given unflatten device tree
> > + * @dt_node: The device tree to search
>
> I noticed that you missed Michal's comment here about renaming the
> "dt_node" here to "dt" to match below function prototype...
>
> >   * @path: The full path to match
> >   *
> >   * Returns a node pointer.
> >   */
> > -struct dt_device_node *dt_find_node_by_path(const char *path);
> > +struct dt_device_node *device_tree_find_node_by_path(struct
> > dt_device_node *dt,
>
> ...here. I personally agree with Michal so I think please fix the comment
> to keep consistency.
>
> The rest of the patch looks good to me, so as long as you fixed this, you
> can have my:
>
> Reviewed-by: Henry Wang <Henry.Wang@arm.com>
>
> Kind regards,
> Henry
>
>
>

[-- Attachment #2: Type: text/html, Size: 2849 bytes --]

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

* Unsubscribe
@ 2023-03-11  3:39 Aviral Gupta
  0 siblings, 0 replies; 122+ messages in thread
From: Aviral Gupta @ 2023-03-11  3:39 UTC (permalink / raw)
  To: Linux-kernel-mentees


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

I don't  wish to receive  any  further  communication

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

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

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

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

* unsubscribe
@ 2022-12-01  1:38 Chan Kim
  0 siblings, 0 replies; 122+ messages in thread
From: Chan Kim @ 2022-12-01  1:38 UTC (permalink / raw)
  To: u-boot

 


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

* Re: unsubscribe
  2022-10-13 10:14 unsubscribe Benjamin Demartin
@ 2022-10-31 16:21 ` Thomas Monjalon
  0 siblings, 0 replies; 122+ messages in thread
From: Thomas Monjalon @ 2022-10-31 16:21 UTC (permalink / raw)
  To: Benjamin Demartin; +Cc: dev

13/10/2022 12:14, Benjamin Demartin:
> Hello I would like to unsubscribe but I don’t know how

This is the link to do it yourself:
	https://mails.dpdk.org/listinfo/dev

I've unsubscribed you from dev list.



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

* unsubscribe
@ 2022-10-13 10:14 Benjamin Demartin
  2022-10-31 16:21 ` unsubscribe Thomas Monjalon
  0 siblings, 1 reply; 122+ messages in thread
From: Benjamin Demartin @ 2022-10-13 10:14 UTC (permalink / raw)
  To: dev

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

Hello I would like to unsubscribe but I don’t know how


[-- Attachment #2: Type: text/html, Size: 1285 bytes --]

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

* Re: unsubscribe
  2022-06-29 21:00 unsubscribe Alvin Šipraga
@ 2022-06-29 21:10 ` Alvin Šipraga
  0 siblings, 0 replies; 122+ messages in thread
From: Alvin Šipraga @ 2022-06-29 21:10 UTC (permalink / raw)
  To: Alvin Šipraga; +Cc: iwd

Woops, sorry about that.

For people clueless like me, the actual unsubscribe address is:

iwd+unsubscribe@lists.linux.dev

Now that the list has moved, it's possible to read via lore/lei,
which is great. Thanks!

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

* unsubscribe
@ 2022-06-29 21:00 Alvin Šipraga
  2022-06-29 21:10 ` unsubscribe Alvin Šipraga
  0 siblings, 1 reply; 122+ messages in thread
From: Alvin Šipraga @ 2022-06-29 21:00 UTC (permalink / raw)
  To: iwd



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

* unsubscribe
@ 2021-11-02  6:37 Jacky Wang (王亮)-浪潮数据
  0 siblings, 0 replies; 122+ messages in thread
From: Jacky Wang (王亮)-浪潮数据 @ 2021-11-02  6:37 UTC (permalink / raw)
  To: nvdimm

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

unsubscribe nvdimm

[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 3627 bytes --]

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

* Re: unsubscribe
  2021-09-30 21:48 unsubscribe Shoaib Rao
@ 2021-09-30 21:49 ` Shoaib Rao
  0 siblings, 0 replies; 122+ messages in thread
From: Shoaib Rao @ 2021-09-30 21:49 UTC (permalink / raw)
  To: MPTCP Upstream


On 9/30/21 2:48 PM, Shoaib Rao wrote:
> unsubscribe
>
>

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

* unsubscribe
@ 2021-09-30 21:48 Shoaib Rao
  2021-09-30 21:49 ` unsubscribe Shoaib Rao
  0 siblings, 1 reply; 122+ messages in thread
From: Shoaib Rao @ 2021-09-30 21:48 UTC (permalink / raw)
  To: MPTCP Upstream

unsubscribe


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

* unsubscribe
@ 2020-12-29  8:54 Shawn Landden
  0 siblings, 0 replies; 122+ messages in thread
From: Shawn Landden @ 2020-12-29  8:54 UTC (permalink / raw)
  To: linuxppc-dev



-- 
Shawn Landden


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

* unsubscribe
@ 2020-12-21  7:28 Shawn Landden
  0 siblings, 0 replies; 122+ messages in thread
From: Shawn Landden @ 2020-12-21  7:28 UTC (permalink / raw)
  To: linuxppc-dev



-- 
Shawn Landden


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

* unsubscribe
@ 2020-10-07 15:34 Thompson, Kent
  0 siblings, 0 replies; 122+ messages in thread
From: Thompson, Kent @ 2020-10-07 15:34 UTC (permalink / raw)
  To: openbmc

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



[-- Attachment #2: Type: text/html, Size: 1447 bytes --]

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

* Re: unsubscribe
       [not found] <CAGHfRMD3FP0_dAEmOgnkgyodXodWq2YcjaiOzvBwG=J1nqq-8g@mail.gmail.com>
@ 2020-07-12 12:22 ` Philip Oakley
  0 siblings, 0 replies; 122+ messages in thread
From: Philip Oakley @ 2020-07-12 12:22 UTC (permalink / raw)
  To: Enji Cooper, git

On 10/07/2020 18:52, Enji Cooper wrote:
> unsubscribe
Enji,
you need to send the message to the 'majordomo', and say which list
(i.e. 'git')  see the 'unsubscribe' link at
http://vger.kernel.org/vger-lists.html#git

Philip

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

* Unsubscribe
@ 2019-05-29 15:32 ID - David Torres
  0 siblings, 0 replies; 122+ messages in thread
From: ID - David Torres @ 2019-05-29 15:32 UTC (permalink / raw)
  To: meta-freescale Mailing List

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

Unsubscribe

De: meta-freescale-bounces@yoctoproject.org <meta-freescale-bounces@yoctoproject.org> En nombre de Vahid Gharaee
Enviado el: sábado, 25 de mayo de 2019 8:01
Para: meta-freescale Mailing List <meta-freescale@yoctoproject.org>
Asunto: [meta-freescale] qt5

Dear all,

How could I add qt5 support in fsl-community-bsp
I added the meta-qt5 but there is no image to bitbake the rootfs.
multimedia image does not include qt5.

Thank you in advanced
Vahid

[-- Attachment #2: Type: text/html, Size: 3088 bytes --]

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

* Unsubscribe
  2019-03-14 23:07       ` Theodore Ts'o
@ 2019-03-15  0:26         ` Shane Volpe
  0 siblings, 0 replies; 122+ messages in thread
From: Shane Volpe @ 2019-03-15  0:26 UTC (permalink / raw)
  To: Theodore Ts'o, Richard Weinberger, Eric Biggers, linux-mtd,
	linux-fscrypt, jaegeuk, linux-unionfs, miklos, amir73il,
	linux-fsdevel, linux-kernel, paullawrence

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

Unsubscribe

[-- Attachment #2: Type: text/html, Size: 58 bytes --]

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

* unsubscribe
@ 2019-03-07 14:13 Punky
  0 siblings, 0 replies; 122+ messages in thread
From: Punky @ 2019-03-07 14:13 UTC (permalink / raw)
  To: openembedded-devel

-- 
-- 

Regards,
Kim-man "Punky" Tse

* Open Source Embedded Solutions and Systems
  - Voyage Linux (http://linux.voyage.hk)
  - Voyage MPD   (http://linux.voyage.hk/voyage-mpd)
  - Voyage MuBox (http://mubox.voyage.hk)
* Voyage Store   (http://store.voyage.hk)


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

* Unsubscribe
@ 2018-05-14 21:14 Eric Brown
  0 siblings, 0 replies; 122+ messages in thread
From: Eric Brown @ 2018-05-14 21:14 UTC (permalink / raw)
  To: selinux

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



[-- Attachment #2: Type: text/html, Size: 23 bytes --]

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

* unsubscribe
       [not found] <CGME20180128235454epcms1p6f3b7aa47ba9c5035f9b317421c09a46a@epcms1p6>
@ 2018-01-28 23:54 ` 조동석
  0 siblings, 0 replies; 122+ messages in thread
From: 조동석 @ 2018-01-28 23:54 UTC (permalink / raw)
  To: kernelnewbies

An HTML attachment was scrubbed...
URL: <http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20180128/2b24fa0e/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 13402 bytes
Desc: not available
URL: <http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20180128/2b24fa0e/attachment.gif>

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

* unsubscribe
@ 2017-06-20  7:57 Gary Thomas
  0 siblings, 0 replies; 122+ messages in thread
From: Gary Thomas @ 2017-06-20  7:57 UTC (permalink / raw)
  To: linuxppc-dev-request; +Cc: linuxppc-dev

Sadly, after >20 years

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

* unsubscribe
@ 2017-01-19 18:31 Brad Litterell
  0 siblings, 0 replies; 122+ messages in thread
From: Brad Litterell @ 2017-01-19 18:31 UTC (permalink / raw)
  To: yocto

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

unsubscribe

[-- Attachment #2: Type: text/html, Size: 2509 bytes --]

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

* unsubscribe
       [not found] <CGME20161205003536epcms1p4c6ce52ccda8bbc5da6eb99d3de8e12a3@epcms1p4>
@ 2016-12-05  0:35 ` 조동석
  0 siblings, 0 replies; 122+ messages in thread
From: 조동석 @ 2016-12-05  0:35 UTC (permalink / raw)
  To: kernelnewbies

An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20161205/bb7ead76/attachment-0001.html 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 13402 bytes
Desc: not available
Url : http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20161205/bb7ead76/attachment-0001.gif 

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

* unsubscribe
@ 2016-10-25 18:30 cybin
  0 siblings, 0 replies; 122+ messages in thread
From: cybin @ 2016-10-25 18:30 UTC (permalink / raw)
  To: PowerPC email list

unsubscribe

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

* unsubscribe
@ 2016-10-05 12:53 고영준
  0 siblings, 0 replies; 122+ messages in thread
From: 고영준 @ 2016-10-05 12:53 UTC (permalink / raw)
  To: kernelnewbies

unsubscribe
 
?????ohojang?? ???
????? ??????
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20161005/31223606/attachment.html 

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

* unsubscribe
@ 2016-08-16  6:44 kuangjiou
  0 siblings, 0 replies; 122+ messages in thread
From: kuangjiou @ 2016-08-16  6:44 UTC (permalink / raw)
  To: Selinux

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

unsubscribe

[-- Attachment #2: Type: text/html, Size: 1920 bytes --]

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

* unsubscribe
@ 2016-04-18 23:21 cybin
  0 siblings, 0 replies; 122+ messages in thread
From: cybin @ 2016-04-18 23:21 UTC (permalink / raw)
  To: Linuxppc-dev



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

* Re: unsubscribe
       [not found] <CAOLmke5wWrewgemRGCfgMY7vnqsnAQcZHDteVWkLHWOj_kOYbA@mail.gmail.com>
@ 2015-03-21 10:39 ` ye tao
  0 siblings, 0 replies; 122+ messages in thread
From: ye tao @ 2015-03-21 10:39 UTC (permalink / raw)
  To: kvm

unsubscribe kvm

On Sat, Mar 21, 2015 at 6:36 PM, ye tao <yetao0715@gmail.com> wrote:
> unsubscribe kvm

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

* unsubscribe
@ 2014-08-11 13:19 Deepak Pandian
  0 siblings, 0 replies; 122+ messages in thread
From: Deepak Pandian @ 2014-08-11 13:19 UTC (permalink / raw)
  To: linuxppc-dev



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

* unsubscribe
@ 2014-02-01  6:27 animan9
  0 siblings, 0 replies; 122+ messages in thread
From: animan9 @ 2014-02-01  6:27 UTC (permalink / raw)
  To: alsa-devel

unsubscribe






Sent from Windows Mail

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

* Re: unsubscribe
  2013-11-22 19:35 unsubscribe Pow, Christopher (SWCOE)
@ 2013-11-22 19:38 ` Denys Dmytriyenko
  0 siblings, 0 replies; 122+ messages in thread
From: Denys Dmytriyenko @ 2013-11-22 19:38 UTC (permalink / raw)
  To: Pow, Christopher (SWCOE); +Cc: meta-ti

On Fri, Nov 22, 2013 at 07:35:47PM +0000, Pow, Christopher (SWCOE) wrote:

Sorry to see you go. To unsubscribe from the list, please use:
https://lists.yoctoproject.org/listinfo/meta-ti

-- 
Denys


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

* unsubscribe
@ 2013-11-22 19:35 Pow, Christopher (SWCOE)
  2013-11-22 19:38 ` unsubscribe Denys Dmytriyenko
  0 siblings, 1 reply; 122+ messages in thread
From: Pow, Christopher (SWCOE) @ 2013-11-22 19:35 UTC (permalink / raw)
  To: meta-ti

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



[-- Attachment #2: Type: text/html, Size: 1618 bytes --]

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

* unsubscribe
@ 2013-10-02 15:58 Daniel Kranich
  0 siblings, 0 replies; 122+ messages in thread
From: Daniel Kranich @ 2013-10-02 15:58 UTC (permalink / raw)
  To: kernelnewbies



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

* unsubscribe
@ 2013-09-15 13:52 GMAIL
  0 siblings, 0 replies; 122+ messages in thread
From: GMAIL @ 2013-09-15 13:52 UTC (permalink / raw)
  To: kernelnewbies

unsubscribe

 

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130915/385e6398/attachment.html 

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

* unsubscribe
@ 2013-09-11  8:43 GMAIL
  0 siblings, 0 replies; 122+ messages in thread
From: GMAIL @ 2013-09-11  8:43 UTC (permalink / raw)
  To: kernelnewbies

unsubscribe

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130911/dc13c3c6/attachment.html 

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

* Re: unsubscribe
  2012-05-01 20:35                   ` unsubscribe Daniel Senderowicz
@ 2012-05-01 20:43                     ` Gregg Levine
  0 siblings, 0 replies; 122+ messages in thread
From: Gregg Levine @ 2012-05-01 20:43 UTC (permalink / raw)
  To: The development of GNU GRUB; +Cc: daniel

On Tue, May 1, 2012 at 4:35 PM, Daniel Senderowicz
<daniel@synchrodesign.com> wrote:
> Please unsubscribe
>
> On Wed, 2012-05-02 at 04:34 +0800, Bean wrote:
>
> On Wed, May 2, 2012 at 4:16 AM, Vladimir 'φ-coder/phcoder' Serbinenko
> <phcoder@gmail.com> wrote:
>> On 01.05.2012 22:09, Bean wrote:
>>> On Wed, May 2, 2012 at 4:06 AM, Vladimir 'φ-coder/phcoder' Serbinenko
>>> <phcoder@gmail.com> wrote:
>>>> On 01.05.2012 22:02, Bean wrote:
>>>>> Hi,
>>>>>
>>>>> Yeah, I have a patch that save the buffer for later use when there is
>>>>> no data, it can solve the unnecessary alloc/free loop.
>>>> No, what I mean: allocate a buffer once for every card and then do
>>>> send/recv with only this buffer and copy to/from it when necessary. This
>>>> way if the card DMAs the packet to the same buffer it won't corrupt
>>>> anything.
>>> Hi,
>>>
>>> It's not ok with fragmentation, since there could be multiple ethernet
>>> packet for an ip packet, we need to store the buffer for assembling.
>> We use the buffer I said only for actual calls. It's copied to
>> newly-allocated packet as soon as the call returns.
>
> Hi,
>
> Yeah, after more thought, it's doable. We can use a ring buffer for
> current active ip frames, and copy ethernet frame to it. This way we
> can get rid of the rsm dynamic queue. It can also get rid of tons of
> grub_netbuff_free scattered around in various layers.
>
>
>
> _______________________________________________
> Grub-devel mailing list
> Grub-devel@gnu.org
> https://lists.gnu.org/mailman/listinfo/grub-devel
>

Hello!
Daniel should you really want to do this, please do not send such
messages to the list. Please make use of the header. There you will
find methods to leave this wonderful list.

-----
Gregg C Levine gregg.drwho8@gmail.com
"This signature fought the Time Wars, time and again."


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

* unsubscribe
  2012-05-01 20:34                 ` Bean
@ 2012-05-01 20:35                   ` Daniel Senderowicz
  2012-05-01 20:43                     ` unsubscribe Gregg Levine
  0 siblings, 1 reply; 122+ messages in thread
From: Daniel Senderowicz @ 2012-05-01 20:35 UTC (permalink / raw)
  To: grub-devel; +Cc: daniel

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

Please unsubscribe

On Wed, 2012-05-02 at 04:34 +0800, Bean wrote:

> On Wed, May 2, 2012 at 4:16 AM, Vladimir 'φ-coder/phcoder' Serbinenko
> <phcoder@gmail.com> wrote:
> > On 01.05.2012 22:09, Bean wrote:
> >> On Wed, May 2, 2012 at 4:06 AM, Vladimir 'φ-coder/phcoder' Serbinenko
> >> <phcoder@gmail.com> wrote:
> >>> On 01.05.2012 22:02, Bean wrote:
> >>>> Hi,
> >>>>
> >>>> Yeah, I have a patch that save the buffer for later use when there is
> >>>> no data, it can solve the unnecessary alloc/free loop.
> >>> No, what I mean: allocate a buffer once for every card and then do
> >>> send/recv with only this buffer and copy to/from it when necessary. This
> >>> way if the card DMAs the packet to the same buffer it won't corrupt
> >>> anything.
> >> Hi,
> >>
> >> It's not ok with fragmentation, since there could be multiple ethernet
> >> packet for an ip packet, we need to store the buffer for assembling.
> > We use the buffer I said only for actual calls. It's copied to
> > newly-allocated packet as soon as the call returns.
> 
> Hi,
> 
> Yeah, after more thought, it's doable. We can use a ring buffer for
> current active ip frames, and copy ethernet frame to it. This way we
> can get rid of the rsm dynamic queue. It can also get rid of tons of
> grub_netbuff_free scattered around in various layers.
> 



[-- Attachment #2: Type: text/html, Size: 1839 bytes --]

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

* unsubscribe
@ 2011-11-14 17:26 Tietz Fabian (AA-DG/PAS-ESD2)
  0 siblings, 0 replies; 122+ messages in thread
From: Tietz Fabian (AA-DG/PAS-ESD2) @ 2011-11-14 17:26 UTC (permalink / raw)
  To: linuxppc-dev



unsubscribe

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

* Unsubscribe
@ 2011-02-28  2:25 Tomasz Fujak
  0 siblings, 0 replies; 122+ messages in thread
From: Tomasz Fujak @ 2011-02-28  2:25 UTC (permalink / raw)
  To: linux-arm-kernel

An HTML attachment was scrubbed...
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20110228/e9c6dffe/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 201102281125718_QKNMBDIF.gif
Type: image/gif
Size: 9524 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20110228/e9c6dffe/attachment.gif>

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

* unsubscribe
@ 2011-01-06 17:42 marduk
  0 siblings, 0 replies; 122+ messages in thread
From: marduk @ 2011-01-06 17:42 UTC (permalink / raw)
  To: kernelnewbies

unsubscribe kernelnewbies

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20110106/4fcfedd9/attachment.html 

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

* unsubscribe
@ 2010-11-03  8:21 Roberto Mantovani
  0 siblings, 0 replies; 122+ messages in thread
From: Roberto Mantovani @ 2010-11-03  8:21 UTC (permalink / raw)
  To: linuxppc-dev



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

* unsubscribe
@ 2010-10-19  8:51 Roberto Mantovani
  0 siblings, 0 replies; 122+ messages in thread
From: Roberto Mantovani @ 2010-10-19  8:51 UTC (permalink / raw)
  To: Linuxppc-dev


-- 
Roberto Mantovani <rmantovani@automazionelogistica.it>
A&L srl - Automazione e Logistica www.automazionelogistica.it
Via Lidice, 20
40139 Bologna
Cap Sociale € 10.000 I.V.
C.F., P.IVA e registro imprese di Bologna N.02296311208

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

* unsubscribe
@ 2010-07-17 11:30 aiolos.cis90
  0 siblings, 0 replies; 122+ messages in thread
From: aiolos.cis90 @ 2010-07-17 11:30 UTC (permalink / raw)
  To: linuxppc-dev

unsubscribe 

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

* unsubscribe
@ 2010-06-23 14:33 Frederic LEGER
  0 siblings, 0 replies; 122+ messages in thread
From: Frederic LEGER @ 2010-06-23 14:33 UTC (permalink / raw)
  To: linuxppc-dev

unsubscribe
 

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

* unsubscribe
  2009-11-27 23:26 unsubscribe Gao Ya'nan
@ 2009-11-28 17:02 ` Thomas Rinder
  0 siblings, 0 replies; 122+ messages in thread
From: Thomas Rinder @ 2009-11-28 17:02 UTC (permalink / raw)
  To: linuxppc-dev

unsubscribe 

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

* unsubscribe
@ 2009-11-27 23:26 Gao Ya'nan
  2009-11-28 17:02 ` unsubscribe Thomas Rinder
  0 siblings, 1 reply; 122+ messages in thread
From: Gao Ya'nan @ 2009-11-27 23:26 UTC (permalink / raw)
  To: linuxppc-dev

unsubscribe

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

* unsubscribe
@ 2009-02-04 13:48 Bietry, Ray
  0 siblings, 0 replies; 122+ messages in thread
From: Bietry, Ray @ 2009-02-04 13:48 UTC (permalink / raw)
  To: linuxppc-dev

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

 


[-- Attachment #2: Type: text/html, Size: 1096 bytes --]

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

* unsubscribe
@ 2009-02-04 13:19 ravi.rao
  0 siblings, 0 replies; 122+ messages in thread
From: ravi.rao @ 2009-02-04 13:19 UTC (permalink / raw)
  To: linuxppc-dev

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

Ravishankar Govindarao
RFL Electronics Inc.
E-mail : Ravi.Rao@rflelect.com
Voice: 973.334.3100 Ext. 233
Fax: 973.334.3863
 
CONFIDENTIALITY NOTE
This e-mail, including any attachments, may contain confidential and/or 
legally privileged information.  The Information is intended only for the 
use of the individual or entity named on this e-mail .  If you are not the 
intended recipient, you are hereby notified that any disclosure, copying, 
distribution, or the taking of any action in reliance on the contents of 
this transmitted Information is strictly prohibited.  Further, if you are 
not the intended recipient, please notify us by return e-mail and delete 
the Information promptly.
 
 
 

[-- Attachment #2: Type: text/html, Size: 1352 bytes --]

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

* unsubscribe
@ 2009-02-04  8:11 Usha Rani Konudula
  0 siblings, 0 replies; 122+ messages in thread
From: Usha Rani Konudula @ 2009-02-04  8:11 UTC (permalink / raw)
  To: Linuxppc-dev

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

 


[-- Attachment #2: Type: text/html, Size: 3952 bytes --]

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

* unsubscribe
@ 2009-01-24 21:46 Hai Zhu
  0 siblings, 0 replies; 122+ messages in thread
From: Hai Zhu @ 2009-01-24 21:46 UTC (permalink / raw)
  To: linuxppc-dev

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

unsubscribe


      

[-- Attachment #2: Type: text/html, Size: 136 bytes --]

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

* Unsubscribe
@ 2009-01-13  5:02 shreeram
  0 siblings, 0 replies; 122+ messages in thread
From: shreeram @ 2009-01-13  5:02 UTC (permalink / raw)
  To: Linuxppc-dev


-- 

-_-
 .

Regards,
R.S.Shree Ram
GDA Technologies Ltd.

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

* RE: unsubscribe
  2009-01-12 12:56 ` unsubscribe ravi.rao
@ 2009-01-12 13:43   ` Rajasekaran Kaliyaperumal,  Chennai
  0 siblings, 0 replies; 122+ messages in thread
From: Rajasekaran Kaliyaperumal,  Chennai @ 2009-01-12 13:43 UTC (permalink / raw)
  To: ravi.rao, rsterling
  Cc: Linuxppc-dev, linuxppc-dev-bounces+ravi.rao=rflelect.com

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


 

unsubscribe

please 

________________________________

From: linuxppc-dev-bounces+rajasekaran.k=hcl.in@ozlabs.org
[mailto:linuxppc-dev-bounces+rajasekaran.k=hcl.in@ozlabs.org] On Behalf
Of ravi.rao@rflelect.com
Sent: Monday, January 12, 2009 6:26 PM
To: rsterling@ssl.berkeley.edu
Cc: Linuxppc-dev@ozlabs.org;
linuxppc-dev-bounces+ravi.rao=rflelect.com@ozlabs.org
Subject: unsubscribe

 


unsubscribe

please
Ravishankar Govindarao
RFL Electronics Inc.
E-mail : Ravi.Rao@rflelect.com <mailto:Ravi.Rao@rflelect.com>  
Voice: 973.334.3100 Ext. 233
Fax: 973.334.3863 

  


CONFIDENTIALITY NOTE


This e-mail, including any attachments, may contain confidential and/or
legally privileged information.  The Information is intended only for
the use of the individual or entity named on this e-mail .  If you are
not the intended recipient, you are hereby notified that any disclosure,
copying, distribution, or the taking of any action in reliance on the
contents of this transmitted Information is strictly prohibited.
Further, if you are not the intended recipient, please notify us by
return e-mail and delete the Information promptly. 

  

  

  



rsterling@ssl.berkeley.edu 
Sent by: linuxppc-dev-bounces+ravi.rao=rflelect.com@ozlabs.org 

01/11/2009 02:25 PM 

To

Linuxppc-dev@ozlabs.org 

cc

 

Subject

unsubscribe

 

 

 




unsubscribe

please


_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev
<https://ozlabs.org/mailman/listinfo/linuxppc-dev> 



DISCLAIMER:
-----------------------------------------------------------------------------------------------------------------------

The contents of this e-mail and any attachment(s) are confidential and intended for the named recipient(s) only.
It shall not attach any liability on the originator or HCL or its affiliates. Any views or opinions presented in 
this email are solely those of the author and may not necessarily reflect the opinions of HCL or its affiliates.
Any form of reproduction, dissemination, copying, disclosure, modification, distribution and / or publication of 
this message without the prior written consent of the author of this e-mail is strictly prohibited. If you have
received this email in error please delete it and notify the sender immediately. Before opening any mail and 
attachments please check them for viruses and defect.

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

[-- Attachment #2: Type: text/html, Size: 11493 bytes --]

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

* unsubscribe
  2009-01-11 19:25 unsubscribe rsterling
  2009-01-12  4:39 ` unsubscribe sandeep malik
@ 2009-01-12 12:56 ` ravi.rao
  2009-01-12 13:43   ` unsubscribe Rajasekaran Kaliyaperumal,  Chennai
  1 sibling, 1 reply; 122+ messages in thread
From: ravi.rao @ 2009-01-12 12:56 UTC (permalink / raw)
  To: rsterling; +Cc: Linuxppc-dev, linuxppc-dev-bounces+ravi.rao=rflelect.com

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

unsubscribe

please
Ravishankar Govindarao
RFL Electronics Inc.
E-mail : Ravi.Rao@rflelect.com
Voice: 973.334.3100 Ext. 233
Fax: 973.334.3863
 
CONFIDENTIALITY NOTE
This e-mail, including any attachments, may contain confidential and/or 
legally privileged information.  The Information is intended only for the 
use of the individual or entity named on this e-mail .  If you are not the 
intended recipient, you are hereby notified that any disclosure, copying, 
distribution, or the taking of any action in reliance on the contents of 
this transmitted Information is strictly prohibited.  Further, if you are 
not the intended recipient, please notify us by return e-mail and delete 
the Information promptly.
 
 
 



rsterling@ssl.berkeley.edu 
Sent by: linuxppc-dev-bounces+ravi.rao=rflelect.com@ozlabs.org
01/11/2009 02:25 PM

To
Linuxppc-dev@ozlabs.org
cc

Subject
unsubscribe






unsubscribe

please


_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


[-- Attachment #2: Type: text/html, Size: 2544 bytes --]

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

* Re: unsubscribe
  2009-01-12  5:49 unsubscribe zhou.yutao
@ 2009-01-12  9:06 ` Geert Uytterhoeven
  0 siblings, 0 replies; 122+ messages in thread
From: Geert Uytterhoeven @ 2009-01-12  9:06 UTC (permalink / raw)
  To: zhou.yutao; +Cc: Linuxppc-dev

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: TEXT/PLAIN; charset=UTF-8, Size: 1448 bytes --]

On Mon, 12 Jan 2009, zhou.yutao@zte.com.cn wrote:
> ÉîÛÚÖÐÐËÁ¦Î¬¼¼ÊõÓÐÏÞ¹«Ë¾
> µØÖ·£ºÉîÛÚÊиßÐÂÇø¿Æ¼¼ÄÏһ·W1-A¶þÂ¥
> µç»°£º0755-26525674-8509£¨°ì¹«ÊÒ£©
> 
> 
> --------------------------------------------------------
> ZTE Information Security Notice: The information contained in this mail is solely property of the sender's organization. This mail communication is confidential. Recipients named above are obligated to maintain secrecy and are not permitted to disclose the contents of this communication to others.
> This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the originator of the message. Any views expressed in this message are those of the individual sender.
> This message has been scanned for viruses and Spam by ZTE Anti-Spam system.

Now I understand why people don't read unsubscription info on mailing list.
They don't read their own signatures ;-)

With kind regards,

Geert Uytterhoeven
Software Architect

Sony Techsoft Centre Europe
The Corporate Village · Da Vincilaan 7-D1 · B-1935 Zaventem · Belgium

Phone:    +32 (0)2 700 8453
Fax:      +32 (0)2 700 8622
E-mail:   Geert.Uytterhoeven@sonycom.com
Internet: http://www.sony-europe.com/

A division of Sony Europe (Belgium) N.V.
VAT BE 0413.825.160 · RPR Brussels
Fortis · BIC GEBABEBB · IBAN BE41293037680010

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

* unsubscribe
@ 2009-01-12  8:29 Kunkel, Ulrich
  0 siblings, 0 replies; 122+ messages in thread
From: Kunkel, Ulrich @ 2009-01-12  8:29 UTC (permalink / raw)
  To: Linuxppc-dev

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

I wish to unsubscribe from this list.

Best Regards,
 

Mit freundlichen Grüßen / Best regards

 

Ulrich Kunkel

Produktlinie Testing Abteilung T-GE

Hottinger Baldwin Messtechnik GmbH
Fax:            +49 6151-803524
E-Mail:         ulrich.kunkel@hbm.com <blocked::mailto:v@hbm.com> 
Internet:      www.hbm.com <blocked::http://www.hbm.com/>  

 

 

Die in dieser E-Mail enthaltene Information ist vertraulich und lediglich für den Empfänger bestimmt. Sollten Sie nicht der eigentliche Empfänger sein, informieren Sie mich bitte kurz und löschen diese E-Mail.

 

Hottinger Baldwin Messtechnik GmbH, Im Tiefen See 45, 64293 Darmstadt, Germany | www.hbm.com 

Registered as GmbH (German limited liability corporation) in the commercial register at the local court of Darmstadt, HRB 1147  
Company domiciled in Darmstadt | CEO: Andreas Huellhorst | Chairman of the board: James Charles Webster

Als Gesellschaft mit beschraenkter Haftung eingetragen im Handelsregister des Amtsgerichts Darmstadt unter HRB 1147 
Sitz der Gesellschaft: Darmstadt | Geschaeftsfuehrung: Andreas Huellhorst | Aufsichtsratsvorsitzender: James Charles Webster

The information in this email is confidential. It is intended solely for the addressee. If you are not the intended recipient, please let me know and delete this email.

Die in dieser E-Mail enthaltene Information ist vertraulich und lediglich für den Empfaenger bestimmt. Sollten Sie nicht der eigentliche Empfaenger sein, informieren Sie mich bitte kurz und loeschen diese E-Mail.


[-- Attachment #2: Type: text/html, Size: 4683 bytes --]

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

* unsubscribe
@ 2009-01-12  5:49 zhou.yutao
  2009-01-12  9:06 ` unsubscribe Geert Uytterhoeven
  0 siblings, 1 reply; 122+ messages in thread
From: zhou.yutao @ 2009-01-12  5:49 UTC (permalink / raw)
  To: Linuxppc-dev

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

深圳中兴力维技术有限公司
地址:深圳市高新区科技南一路W1-A二楼
电话:0755-26525674-8509(办公室)


--------------------------------------------------------
ZTE Information Security Notice: The information contained in this mail is solely property of the sender's organization. This mail communication is confidential. Recipients named above are obligated to maintain secrecy and are not permitted to disclose the contents of this communication to others.
This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the originator of the message. Any views expressed in this message are those of the individual sender.
This message has been scanned for viruses and Spam by ZTE Anti-Spam system.

[-- Attachment #2: Type: text/html, Size: 1467 bytes --]

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

* Re: Unsubscribe
  2009-01-11 17:38 Unsubscribe Nadav Sharabi
@ 2009-01-12  4:49 ` Wei Jack
  0 siblings, 0 replies; 122+ messages in thread
From: Wei Jack @ 2009-01-12  4:49 UTC (permalink / raw)
  To: Linuxppc-dev

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

I wish to unsubscribe from this list.

Best Regards,

[-- Attachment #2: Type: text/html, Size: 67 bytes --]

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

* unsubscribe
  2009-01-11 19:25 unsubscribe rsterling
@ 2009-01-12  4:39 ` sandeep malik
  2009-01-12 12:56 ` unsubscribe ravi.rao
  1 sibling, 0 replies; 122+ messages in thread
From: sandeep malik @ 2009-01-12  4:39 UTC (permalink / raw)
  To: Linuxppc-dev

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


unsubscribe

please


_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev



      Check out the all-new Messenger 9.0! Go to http://in.messenger.yahoo.com/

[-- Attachment #2: Type: text/html, Size: 901 bytes --]

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

* unsubscribe
@ 2009-01-11 19:25 rsterling
  2009-01-12  4:39 ` unsubscribe sandeep malik
  2009-01-12 12:56 ` unsubscribe ravi.rao
  0 siblings, 2 replies; 122+ messages in thread
From: rsterling @ 2009-01-11 19:25 UTC (permalink / raw)
  To: Linuxppc-dev

unsubscribe

please

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

* Unsubscribe
@ 2009-01-11 17:38 Nadav Sharabi
  2009-01-12  4:49 ` Unsubscribe Wei Jack
  0 siblings, 1 reply; 122+ messages in thread
From: Nadav Sharabi @ 2009-01-11 17:38 UTC (permalink / raw)
  To: Linuxppc-dev

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

Hi,

I wish to unsubscribe from this list.

Best Regards,
Nadav Sharabi

[-- Attachment #2: Type: text/html, Size: 112 bytes --]

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

* unsubscribe
  2009-01-11 10:02 unsubscribe Ignacio Vara
@ 2009-01-11 16:13 ` List
  0 siblings, 0 replies; 122+ messages in thread
From: List @ 2009-01-11 16:13 UTC (permalink / raw)
  To: Linuxppc-dev

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

unsubscribe 

 

[-- Attachment #2: Type: text/html, Size: 1958 bytes --]

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

* unsubscribe
@ 2009-01-11 10:02 Ignacio Vara
  2009-01-11 16:13 ` unsubscribe List
  0 siblings, 1 reply; 122+ messages in thread
From: Ignacio Vara @ 2009-01-11 10:02 UTC (permalink / raw)
  To: Linuxppc-dev

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

unsubscribe


[-- Attachment #2: Type: text/html, Size: 1552 bytes --]

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

* Re: Unsubscribe
  2009-01-06  7:39   ` Unsubscribe Tore Martin Hagen
@ 2009-01-08  7:19     ` Stephen Rothwell
  0 siblings, 0 replies; 122+ messages in thread
From: Stephen Rothwell @ 2009-01-08  7:19 UTC (permalink / raw)
  To: Tore Martin Hagen; +Cc: Linuxppc-dev

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

Hi Tore,

On Tue, 06 Jan 2009 08:39:31 +0100 Tore Martin Hagen <thagen@slb.com> wrote:
>
> The first is that a lot of people has unsubscribed to this list a long 
> time ago, and then when it changed name we where suddenly subscribed for 
> again.

I only transferred over people who were currently subscribed to the
linuxppc-embedded list - some of these may have had their mail delivery
from the list *disabled*, but there was no easy way to check that, sorry.

> The second is that the site 
> https://ozlabs.org/mailman/listinfo/linuxppc-dev has an invalid security 
> certificate, so we can not really unsubscribe that way.
> 
> I suggest that the certificate is updated.

We use a certificate issued by cacert.org.  Unfortunately, a lot of
browsers do not recognise them as a CA.

You can use http://ozlabs.org/mailman/listinfo/linuxppc-dev instead.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

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

* unsubscribe
@ 2009-01-08  2:45 Yedu Jathavedan
  0 siblings, 0 replies; 122+ messages in thread
From: Yedu Jathavedan @ 2009-01-08  2:45 UTC (permalink / raw)
  To: Linuxppc-dev

unsubscribe

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

* unsubscribe
@ 2009-01-07 17:21 rsterling
  0 siblings, 0 replies; 122+ messages in thread
From: rsterling @ 2009-01-07 17:21 UTC (permalink / raw)
  To: Linuxppc-dev

unsubscribe

---------------------------------------
Rick Sterling
Space Sciences Laboratory
University of California, Berkeley
510.642.6149
rsterling@ssl.berkeley.edu
---------------------------------------

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

* unsubscribe
@ 2009-01-07 17:12 Wei Jack
  0 siblings, 0 replies; 122+ messages in thread
From: Wei Jack @ 2009-01-07 17:12 UTC (permalink / raw)
  To: Linuxppc-dev

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

unsubscribe
_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

[-- Attachment #2: Type: text/html, Size: 341 bytes --]

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

* unsubscribe
@ 2009-01-07 16:00 neeraj garg
  0 siblings, 0 replies; 122+ messages in thread
From: neeraj garg @ 2009-01-07 16:00 UTC (permalink / raw)
  To: Linuxppc-dev

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

unsubscribe

[-- Attachment #2: Type: text/html, Size: 12 bytes --]

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

* Re: unsubscribe
  2009-01-07  6:37 unsubscribe santhoshunnikrishnan
  2009-01-07  7:27 ` unsubscribe Rustagi, Vikas
@ 2009-01-07 15:32 ` Sungjoo Kim
  1 sibling, 0 replies; 122+ messages in thread
From: Sungjoo Kim @ 2009-01-07 15:32 UTC (permalink / raw)
  To: Linuxppc-dev; +Cc: santhoshunnikrishnan

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

Please unsubscribe me too, thanks!!



santhoshunnikrishnan@tataelxsi.co.in wrote:
>  
> Please unsubscribe me, thanks!
>
> The information contained in this electronic message and any 
> attachments to this message are intended for the exclusive use of the 
> addressee(s) and may contain proprietary, confidential or privileged 
> information. If you are not the intended recipient, you should not 
> disseminate, distribute or copy this e-mail. Please notify the sender 
> immediately and destroy all copies of this message and any attachments 
> contained in it.
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev


[-- Attachment #2: Type: text/html, Size: 1568 bytes --]

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

* RE: unsubscribe
  2009-01-07  7:42     ` unsubscribe Decherf, Patrick
@ 2009-01-07  7:59       ` Liu Dave
  0 siblings, 0 replies; 122+ messages in thread
From: Liu Dave @ 2009-01-07  7:59 UTC (permalink / raw)
  To: Linuxppc-dev

They seem like worm virus. or
The linuxppc-dev really doesn't have love?

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

* Unsubscribe
  2009-01-07  7:23 mpc5200 ATA DMA Peter Czanik
@ 2009-01-07  7:58 ` Landau, Bracha
  0 siblings, 0 replies; 122+ messages in thread
From: Landau, Bracha @ 2009-01-07  7:58 UTC (permalink / raw)
  To: linuxppc-dev



This e-mail is confidential, the property of NDS Ltd and intended for the a=
ddressee only. Any dissemination, copying or distribution of this message o=
r any attachments by anyone other than the intended recipient is strictly p=
rohibited. If you have received this message in error, please immediately n=
otify the postmaster@nds.com and destroy the original message. Messages sen=
t to and from NDS may be monitored. NDS cannot guarantee any message delive=
ry method is secure or error-free. Information could be intercepted, corrup=
ted, lost, destroyed, arrive late or incomplete, or contain viruses. We do =
not accept responsibility for any errors or omissions in this message and/o=
r attachment that arise as a result of transmission. You should carry out y=
our own virus checks before opening any attachment. Any views or opinions p=
resented are solely those of the author and do not necessarily represent th=
ose of NDS.

To protect the environment please do not print this e-mail unless necessary=
.

NDS Limited Registered office: One Heathrow Boulevard, 286 Bath Road, West =
Drayton, Middlesex, UB7 0DQ, United Kingdom. A company registered in Englan=
d and Wales Registered no. 3080780 VAT no. GB 603 8808 40-00

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

* RE: unsubscribe
  2009-01-07  6:32   ` unsubscribe AKS
  2009-01-07  6:38     ` unsubscribe zhou.yutao
@ 2009-01-07  7:42     ` Decherf, Patrick
  2009-01-07  7:59       ` unsubscribe Liu Dave
  1 sibling, 1 reply; 122+ messages in thread
From: Decherf, Patrick @ 2009-01-07  7:42 UTC (permalink / raw)
  To: Linuxppc-dev

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

Please unsubscribe me, thanks!



DISCLAIMER:
Unless indicated otherwise, the information contained in this message is privileged and confidential, and is intended only for the use of the addressee(s) named above and others who have been specifically authorized to receive it. If you are not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this message and/or attachments is strictly prohibited. The company accepts no liability for any damage caused by any virus transmitted by this email. Furthermore, the company does not warrant a proper and complete transmission of this information, nor does it accept liability for any delays. If you have received this message in error, please contact the sender and delete the message. Thank you.

[-- Attachment #2: Type: text/html, Size: 1066 bytes --]

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

* RE: unsubscribe
  2009-01-07  6:37 unsubscribe santhoshunnikrishnan
@ 2009-01-07  7:27 ` Rustagi, Vikas
  2009-01-07 15:32 ` unsubscribe Sungjoo Kim
  1 sibling, 0 replies; 122+ messages in thread
From: Rustagi, Vikas @ 2009-01-07  7:27 UTC (permalink / raw)
  To: Linuxppc-dev

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

Please unsubscribe me...thanks

 



DISCLAIMER:
Unless indicated otherwise, the information contained in this message is privileged and confidential, and is intended only for the use of the addressee(s) named above and others who have been specifically authorized to receive it. If you are not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this message and/or attachments is strictly prohibited. The company accepts no liability for any damage caused by any virus transmitted by this email. Furthermore, the company does not warrant a proper and complete transmission of this information, nor does it accept liability for any delays. If you have received this message in error, please contact the sender and delete the message. Thank you.

[-- Attachment #2: Type: text/html, Size: 1117 bytes --]

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

* unsubscribe
  2009-01-07  6:32   ` unsubscribe AKS
@ 2009-01-07  6:38     ` zhou.yutao
  2009-01-07  7:42     ` unsubscribe Decherf, Patrick
  1 sibling, 0 replies; 122+ messages in thread
From: zhou.yutao @ 2009-01-07  6:38 UTC (permalink / raw)
  To: Linuxppc-dev

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

Please unsubscribe me, thanks!
_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org




深圳中兴力维技术有限公司
地址:深圳市高新区科技南一路W1-A二楼
电话:0755-26525674-8509(办公室)



AKS <aung.aungkyawsoe@gmail.com> 
发件人:  linuxppc-dev-bounces+zhou.yutao=zte.com.cn@ozlabs.org
2009-01-07 14:32

收件人
Linuxppc-dev@ozlabs.org
抄送

主题
unsubscribe






Please unsubscribe me, thanks!
_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev



--------------------------------------------------------
ZTE Information Security Notice: The information contained in this mail is solely property of the sender's organization. This mail communication is confidential. Recipients named above are obligated to maintain secrecy and are not permitted to disclose the contents of this communication to others.
This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the originator of the message. Any views expressed in this message are those of the individual sender.
This message has been scanned for viruses and Spam by ZTE Anti-Spam system.

[-- Attachment #2: Type: text/html, Size: 2795 bytes --]

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

* unsubscribe
@ 2009-01-07  6:37 santhoshunnikrishnan
  2009-01-07  7:27 ` unsubscribe Rustagi, Vikas
  2009-01-07 15:32 ` unsubscribe Sungjoo Kim
  0 siblings, 2 replies; 122+ messages in thread
From: santhoshunnikrishnan @ 2009-01-07  6:37 UTC (permalink / raw)
  To: Linuxppc-dev


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

 
Please unsubscribe me, thanks!


The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments contained in it.

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

[-- Attachment #2: ATT00043.txt --]
[-- Type: text/plain, Size: 146 bytes --]

_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

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

* unsubscribe
  2009-01-07  1:55 ` unsubscribe Tao Xue
@ 2009-01-07  6:32   ` AKS
  2009-01-07  6:38     ` unsubscribe zhou.yutao
  2009-01-07  7:42     ` unsubscribe Decherf, Patrick
  0 siblings, 2 replies; 122+ messages in thread
From: AKS @ 2009-01-07  6:32 UTC (permalink / raw)
  To: Linuxppc-dev

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

Please unsubscribe me, thanks!

[-- Attachment #2: Type: text/html, Size: 66 bytes --]

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

* unsubscribe
@ 2009-01-07  2:23 pravin
  0 siblings, 0 replies; 122+ messages in thread
From: pravin @ 2009-01-07  2:23 UTC (permalink / raw)
  To: Linuxppc-dev

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



[-- Attachment #2: Type: text/html, Size: 113 bytes --]

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

* unsubscribe
  2009-01-06 17:59 unsubscribe hb fei
@ 2009-01-07  1:55 ` Tao Xue
  2009-01-07  6:32   ` unsubscribe AKS
  0 siblings, 1 reply; 122+ messages in thread
From: Tao Xue @ 2009-01-07  1:55 UTC (permalink / raw)
  To: Linuxppc-dev

Please unsubscribe me,

thanks

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

* unsubscribe
@ 2009-01-06 17:59 hb fei
  2009-01-07  1:55 ` unsubscribe Tao Xue
  0 siblings, 1 reply; 122+ messages in thread
From: hb fei @ 2009-01-06 17:59 UTC (permalink / raw)
  To: Linuxppc-dev

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



[-- Attachment #2: Type: text/html, Size: 5 bytes --]

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

* RE: unsubscribe
  2009-01-06  5:03   ` unsubscribe vikas.soni
@ 2009-01-06 10:55     ` Paul Eaton
  0 siblings, 0 replies; 122+ messages in thread
From: Paul Eaton @ 2009-01-06 10:55 UTC (permalink / raw)
  To: vikas.soni, 'Nate Jozwiak'; +Cc: linuxppc-dev

Unsubscribe me please

-----Original Message-----
From: linuxppc-dev-bounces+pauleaton=earthlink.net@ozlabs.org
[mailto:linuxppc-dev-bounces+pauleaton=earthlink.net@ozlabs.org] On Behalf
Of vikas.soni@gdatech.co.in
Sent: Tuesday, January 06, 2009 12:04 AM
To: Nate Jozwiak
Cc: linuxppc-dev@ozlabs.org
Subject: Re: unsubscribe

unsubscibe me ......

thanks

> unsubscribe
>
>
>
>
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev

_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

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

* Re: Unsubscribe
  2009-01-05  4:33 ` Unsubscribe Steve Iribarne (GMail)
@ 2009-01-06  7:39   ` Tore Martin Hagen
  2009-01-08  7:19     ` Unsubscribe Stephen Rothwell
  0 siblings, 1 reply; 122+ messages in thread
From: Tore Martin Hagen @ 2009-01-06  7:39 UTC (permalink / raw)
  To: Steve Iribarne (GMail); +Cc: Linuxppc-dev, Narendra KA

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

There are two problems here.

The first is that a lot of people has unsubscribed to this list a long 
time ago, and then when it changed name we where suddenly subscribed for 
again.

The second is that the site 
https://ozlabs.org/mailman/listinfo/linuxppc-dev has an invalid security 
certificate, so we can not really unsubscribe that way.

I suggest that the certificate is updated.

/Tore

Steve Iribarne (GMail) wrote:
> HOLLY CRAP everyone.. please read at the bottom of these emails to
> figure out how to unsubscribe.  This is ridiculous!
>
> Towards the bottom of the
> "https://ozlabs.org/mailman/listinfo/linuxppc-dev" page there is
> simple place you put your f'ing email address and hit "Unsubscribe or
> edit options".
>
> That's why we put it there... so you could do it and we wouldn't have
> to do any of it.
>
> Please quit sending emails asking someone to do something for you.
>
> Sorry for the spam, but I'm hung over from new years and in a bad mood
> and this was the email that sent me over the top.  No ill will towards
> you Narendra.
>
> -stv
>
> On Sun, Jan 4, 2009 at 8:32 PM, Narendra KA <Narendra.KA@lntemsys.com> wrote:
>   
>> Hi,
>>
>> can you please unsubscribe me from this mailing list?
>>
>> Thanks and Regards,
>> Narendra K.A
>>
>> _______________________________________________
>> Linuxppc-dev mailing list
>> Linuxppc-dev@ozlabs.org
>> https://ozlabs.org/mailman/listinfo/linuxppc-dev
>>
>>     
>
>
>
> --
> /*
>  * Steve Iribarne
>  * Software Engineer
>  * (aka Grunt)
>  */
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev
>   


[-- Attachment #2: Type: text/html, Size: 2680 bytes --]

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

* Re: unsubscribe
  2009-01-05 21:49 ` unsubscribe Nate Jozwiak
@ 2009-01-06  5:03   ` vikas.soni
  2009-01-06 10:55     ` unsubscribe Paul Eaton
  0 siblings, 1 reply; 122+ messages in thread
From: vikas.soni @ 2009-01-06  5:03 UTC (permalink / raw)
  To: Nate Jozwiak; +Cc: linuxppc-dev

unsubscibe me ......

thanks

> unsubscribe
>
>
>
>
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev

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

* Unsubscribe
@ 2009-01-05 23:48 JeongIn Choi
  0 siblings, 0 replies; 122+ messages in thread
From: JeongIn Choi @ 2009-01-05 23:48 UTC (permalink / raw)
  Cc: Frank Lautenbach, Linuxppc-dev

[-- Attachment #1: Type: text/html, Size: 2493 bytes --]

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

* Re: unsubscribe
       [not found] ` <43FB4790A017E847A47C1D1FD108904E017B7C12@EXVBE011-1.exch011.in termedia.net>
@ 2009-01-05 23:46   ` Ian Juang
  0 siblings, 0 replies; 122+ messages in thread
From: Ian Juang @ 2009-01-05 23:46 UTC (permalink / raw)
  To: Leonid; +Cc: Linuxppc-dev

Please unsubscribe me from this list.


>
> -------- Original Message --------
> Subject: unsubscribe
> From: Leonid <Leonid@a-k-a.net>
> To: Linuxppc-dev@ozlabs.org
> Date: 2009年1月6日 上午 02:03:55
>
>
>
> Please unsubscribe me from this list.
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev
>
>   

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

* unsubscribe
@ 2009-01-05 21:58 Iain Shewring
  0 siblings, 0 replies; 122+ messages in thread
From: Iain Shewring @ 2009-01-05 21:58 UTC (permalink / raw)
  To: Linuxppc-dev



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

* unsubscribe
  2009-01-05 21:32 unsubscribe Jim Rose
@ 2009-01-05 21:49 ` Nate Jozwiak
  2009-01-06  5:03   ` unsubscribe vikas.soni
  0 siblings, 1 reply; 122+ messages in thread
From: Nate Jozwiak @ 2009-01-05 21:49 UTC (permalink / raw)
  To: Linuxppc-dev

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

unsubscribe

 

 


[-- Attachment #2: Type: text/html, Size: 1481 bytes --]

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

* unsubscribe
@ 2009-01-05 21:32 Jim Rose
  2009-01-05 21:49 ` unsubscribe Nate Jozwiak
  0 siblings, 1 reply; 122+ messages in thread
From: Jim Rose @ 2009-01-05 21:32 UTC (permalink / raw)
  To: Linuxppc-dev

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



[-- Attachment #2: Type: text/html, Size: 1096 bytes --]

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

* unsubscribe
  2009-01-05 18:03 unsubscribe Leonid
@ 2009-01-05 19:06 ` Nitesh Guinde
  0 siblings, 0 replies; 122+ messages in thread
From: Nitesh Guinde @ 2009-01-05 19:06 UTC (permalink / raw)
  To: Linuxppc-dev

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



[-- Attachment #2: Type: text/html, Size: 5 bytes --]

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

* unsubscribe
@ 2009-01-05 18:03 Leonid
  2009-01-05 19:06 ` unsubscribe Nitesh Guinde
  0 siblings, 1 reply; 122+ messages in thread
From: Leonid @ 2009-01-05 18:03 UTC (permalink / raw)
  To: Linuxppc-dev

Please unsubscribe me from this list.

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

* unsubscribe
@ 2009-01-05 13:09 P Jagadeesh Maiya
  0 siblings, 0 replies; 122+ messages in thread
From: P Jagadeesh Maiya @ 2009-01-05 13:09 UTC (permalink / raw)
  To: linuxppc-dev

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



[-- Attachment #2: Type: text/html, Size: 289 bytes --]

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

* UNSUBSCRIBE
@ 2009-01-05  8:41 Arun Kumar
  0 siblings, 0 replies; 122+ messages in thread
From: Arun Kumar @ 2009-01-05  8:41 UTC (permalink / raw)
  To: linuxppc-dev

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

>
> kindly unsubscribe me from this mailing list.
>



-- 

Best Regards,
Arun


"      Not in imagined futures
               Or in remembered pasts
       But only here and only now
                   Will you find a peace that lasts        "

[-- Attachment #2: Type: text/html, Size: 668 bytes --]

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

* Re: Unsubscribe
  2009-01-05  4:32 Unsubscribe Narendra KA
@ 2009-01-05  4:33 ` Steve Iribarne (GMail)
  2009-01-06  7:39   ` Unsubscribe Tore Martin Hagen
  0 siblings, 1 reply; 122+ messages in thread
From: Steve Iribarne (GMail) @ 2009-01-05  4:33 UTC (permalink / raw)
  To: Narendra KA; +Cc: Linuxppc-dev

HOLLY CRAP everyone.. please read at the bottom of these emails to
figure out how to unsubscribe.  This is ridiculous!

Towards the bottom of the
"https://ozlabs.org/mailman/listinfo/linuxppc-dev" page there is
simple place you put your f'ing email address and hit "Unsubscribe or
edit options".

That's why we put it there... so you could do it and we wouldn't have
to do any of it.

Please quit sending emails asking someone to do something for you.

Sorry for the spam, but I'm hung over from new years and in a bad mood
and this was the email that sent me over the top.  No ill will towards
you Narendra.

-stv

On Sun, Jan 4, 2009 at 8:32 PM, Narendra KA <Narendra.KA@lntemsys.com> wrote:
>
>
> Hi,
>
> can you please unsubscribe me from this mailing list?
>
> Thanks and Regards,
> Narendra K.A
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev
>



-- 
/*
 * Steve Iribarne
 * Software Engineer
 * (aka Grunt)
 */

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

* Unsubscribe
@ 2009-01-05  4:32 Narendra KA
  2009-01-05  4:33 ` Unsubscribe Steve Iribarne (GMail)
  0 siblings, 1 reply; 122+ messages in thread
From: Narendra KA @ 2009-01-05  4:32 UTC (permalink / raw)
  To: Linuxppc-dev

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

 Hi,

can you please unsubscribe me from this mailing list?
 
Thanks and Regards,
Narendra K.A

[-- Attachment #2: Type: text/html, Size: 448 bytes --]

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

* Re: Unsubscribe
  2009-01-04 12:22 Unsubscribe Frank Lautenbach
@ 2009-01-04 13:55 ` Leon Woestenberg
  0 siblings, 0 replies; 122+ messages in thread
From: Leon Woestenberg @ 2009-01-04 13:55 UTC (permalink / raw)
  To: Frank Lautenbach; +Cc: Linuxppc-dev

Hello Frank,

On Sun, Jan 4, 2009 at 1:22 PM, Frank Lautenbach
<frank.lautenbach@gmx.de> wrote:
> can you please unsubscribe me from this mailing list?
> Frank

Every email from the list comes with this footer:

> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev
>
Visit that URL and use the unsubscribe feature.

Regards,
-- 
Leon

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

* Unsubscribe
@ 2009-01-04 12:22 Frank Lautenbach
  2009-01-04 13:55 ` Unsubscribe Leon Woestenberg
  0 siblings, 1 reply; 122+ messages in thread
From: Frank Lautenbach @ 2009-01-04 12:22 UTC (permalink / raw)
  To: Linuxppc-dev

Hi,

can you please unsubscribe me from this mailing list?

Thanks!


Greetings,

Frank

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

* unsubscribe
@ 2008-07-09 14:45 Ed Henderson
  0 siblings, 0 replies; 122+ messages in thread
From: Ed Henderson @ 2008-07-09 14:45 UTC (permalink / raw)
  To: Linuxppc-embedded

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

 


[-- Attachment #2: Type: text/html, Size: 1619 bytes --]

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

* unsubscribe
@ 2007-06-12  1:14 Alexander Baldeck
  0 siblings, 0 replies; 122+ messages in thread
From: Alexander Baldeck @ 2007-06-12  1:14 UTC (permalink / raw)
  To: linuxppc-dev



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

* unsubscribe
@ 2007-04-24 18:07 mike
  0 siblings, 0 replies; 122+ messages in thread
From: mike @ 2007-04-24 18:07 UTC (permalink / raw)
  To: linuxppc-dev



Michael J. Kelly
VP Engineering
Cogent Computer Systems, Inc.
17 Industrial Dr.
Smithfield, RI 02917
tel:401-223-3441 fax:401-223-3442
www.cogcomp.com
alternate email: mkelly6505@hotmail.com

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

* unsubscribe
  2006-10-28  9:08 Is get_property() correct? Michael Ellerman
@ 2006-10-30  2:05 ` Usha Rani Konudula
  0 siblings, 0 replies; 122+ messages in thread
From: Usha Rani Konudula @ 2006-10-30  2:05 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: linuxppc-dev

unsubscribe

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

* unsubscribe
@ 2006-10-12  9:56 Usha Rani Konudula
  0 siblings, 0 replies; 122+ messages in thread
From: Usha Rani Konudula @ 2006-10-12  9:56 UTC (permalink / raw)
  To: linuxppc-dev list

unsubscribe

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

* unsubscribe
@ 2006-07-25  4:32 umesh k
  0 siblings, 0 replies; 122+ messages in thread
From: umesh k @ 2006-07-25  4:32 UTC (permalink / raw)
  To: Linuxppc-embedded

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

  
 				
---------------------------------
 Find out what India is talking about on Yahoo! Answers India.

[-- Attachment #2: Type: text/html, Size: 190 bytes --]

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

* unsubscribe
@ 2006-06-09  9:19 rohitash panda
  0 siblings, 0 replies; 122+ messages in thread
From: rohitash panda @ 2006-06-09  9:19 UTC (permalink / raw)
  To: Linuxppc-dev

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

  


Ability is what you are capable of doing. 

Motivation determines what you do. 

Attitude determines how well you do it. 

[-- Attachment #2: Type: text/html, Size: 537 bytes --]

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

* unsubscribe
@ 2006-02-27  4:10 shrisha.prasad
  0 siblings, 0 replies; 122+ messages in thread
From: shrisha.prasad @ 2006-02-27  4:10 UTC (permalink / raw)
  To: Linuxppc-dev

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



[-- Attachment #2: Type: text/html, Size: 0 bytes --]

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

* unsubscribe
@ 2006-02-13 18:39 Moloko Vellocet
  0 siblings, 0 replies; 122+ messages in thread
From: Moloko Vellocet @ 2006-02-13 18:39 UTC (permalink / raw)
  To: linuxppc-embedded

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

unsubscribe

[-- Attachment #2: Type: text/html, Size: 13 bytes --]

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

* unsubscribe
@ 2005-11-05 10:13 Geert Janssens
  0 siblings, 0 replies; 122+ messages in thread
From: Geert Janssens @ 2005-11-05 10:13 UTC (permalink / raw)
  To: Linuxppc-dev



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

* Re: UNSUBSCRIBE
       [not found] <D3099360D13C2F4F8F3C12EADC7A346A023C5A7C@srsdmail.pv.com>
@ 2005-01-05 21:55 ` George Socker
  0 siblings, 0 replies; 122+ messages in thread
From: George Socker @ 2005-01-05 21:55 UTC (permalink / raw)
  To: alsa-devel

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

On Wednesday, January 05 2005 04:31 pm, a Nimesh Chanchani wrote:

>
> Send Alsa-devel mailing list submissions to
>  alsa-devel@lists.sourceforge.net
>
> To subscribe or unsubscribe via the World Wide Web, visit
>  https://lists.sourceforge.net/lists/listinfo/alsa-devel
> or, via email, send a message with subject or body 'help' to
>  alsa-devel-request@lists.sourceforge.net
 ^^^^^^^^^^^^^^^^^
Please read this. You are sending the unsubscribe request to the wrong 
address.

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: unsubscribe
  2004-11-01 23:04 ` unsubscribe Jacob
@ 2004-11-02  0:44   ` Lee Revell
  0 siblings, 0 replies; 122+ messages in thread
From: Lee Revell @ 2004-11-02  0:44 UTC (permalink / raw)
  To: Jacob; +Cc: Jaap van Geffen, alsa-devel

On Mon, 2004-11-01 at 18:04 -0500, Jacob wrote:
> Been trying for months to get off the list.  Let me know if you find out
> how
> 
> On Mon, 2004-11-01 at 20:37 +0100, Jaap van Geffen wrote:
> > lp m

Did you try the URL that is at the bottom of every list message?

Lee



-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click

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

* Re: unsubscribe
       [not found] <000c01c4c04a$4f707720$974ffea9@a2i4y5>
@ 2004-11-01 23:04 ` Jacob
  2004-11-02  0:44   ` unsubscribe Lee Revell
  0 siblings, 1 reply; 122+ messages in thread
From: Jacob @ 2004-11-01 23:04 UTC (permalink / raw)
  To: Jaap van Geffen; +Cc: alsa-devel

Been trying for months to get off the list.  Let me know if you find out
how

On Mon, 2004-11-01 at 20:37 +0100, Jaap van Geffen wrote:
> lp m
-- 
Jacob <zero@purdue.edu>



-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click

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

* unsubscribe
@ 2003-06-30 13:30 Fabio Sirna
  0 siblings, 0 replies; 122+ messages in thread
From: Fabio Sirna @ 2003-06-30 13:30 UTC (permalink / raw)
  To: Acpi-devel





-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01

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

* Re: unsubscribe
  2003-03-24 20:49   ` Hans Reiser
@ 2003-03-25  6:15     ` Voicu Liviu
  0 siblings, 0 replies; 122+ messages in thread
From: Voicu Liviu @ 2003-03-25  6:15 UTC (permalink / raw)
  To: Hans Reiser, Heinz-Josef Claes; +Cc: kend, reiserfs-list

unsubscribe

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

* unsubscribe
@ 2002-09-24  9:33 farnis=VGgt2q2+T+FeoWH0uzbU5w@public.gmane.org
  0 siblings, 0 replies; 122+ messages in thread
From: farnis=VGgt2q2+T+FeoWH0uzbU5w@public.gmane.org @ 2002-09-24  9:33 UTC (permalink / raw)
  To: Acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f



--
Fabio

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

* unsubscribe
  2002-03-27 10:46 Unable to recover from CRC failiure Joakim Tjernlund
@ 2002-03-27 17:00 ` Roy Sherrill
  0 siblings, 0 replies; 122+ messages in thread
From: Roy Sherrill @ 2002-03-27 17:00 UTC (permalink / raw)
  To: linux-mtd


-----Original Message-----
From: linux-mtd-admin@lists.infradead.org
[mailto:linux-mtd-admin@lists.infradead.org]On Behalf Of Joakim
Tjernlund
Sent: Wednesday, March 27, 2002 2:47 AM
To: linux-mtd@lists.infradead.org
Subject: Unable to recover from CRC failiure


Hi

I got the following on one of our nodes:
-------------- Start log --------------
<snip>
JFFS2: Total scan time: 11.41 sec
Eep. Child "utmp" (ino #1853) of dir ino #130 doesn't exist!
VFS: Mounted root (jffs2 filesystem).
Freeing unused kernel memory: 52k init 4k openfirmware
jffs2_read_inode() on nonexistent ino 1853
INIT: version 2.78 booting
Fast boot, no file system check
none on /dev/shm type shm (rw)
Cleaning: /etc/network/ifstate.
Enabling packet forwarding: done.
Configuring network interfaces: done.
Cleaning: /tmp /var/lock /var/runfind: ./utmp: Input/output error
/etc/init.d/rcS: /var/run/utmp: Input/output error
Give root password for maintenance
(or type Control-D for normal startup):
bash-2.04# cd /var/run
bash-2.04# ls
exim  utmp
bash-2.04# ls -l
ls: utmp: Input/output error
total 0
drwxr-xr-x    1 root     root            0 May 24  2001 exim
bash-2.04# rm utmp
rm: cannot remove `utmp': Input/output error
bash-2.04# rm -f utmp
rm: cannot remove `utmp': Input/output error
bash-2.04# ls
exim  utmp
bash-2.04# ls -l
ls: utmp: Input/output error
total 0
drwxr-xr-x    1 root     root            0 May 24  2001 exim
bash-2.04# cd ..
bash-2.04# pwd
/var
bash-2.04# ls
cache  lib  local  lock  log  mail  opt  run  spool  tmp  ucd-snmp
bash-2.04# ls run
exim  utmp
bash-2.04# mv run slask
mv: cannot stat `run/utmp': Input/output error
bash-2.04# df
Filesystem           1k-blocks      Used Available Use% Mounted on
/dev/root                63744     44996     18748  71% /
bash-2.04#
-------------- End log -------------

I have no problem with getting a bad CRC on the JFFS2 FS at times, but that
I am unable to get rid of
the offending file(utmp).

I am using the latest stable 2.4 branch.

Any ideas?

           Jocke



______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* unsubscribe
@ 2000-07-25 10:21 Kasslatter Fritz
  0 siblings, 0 replies; 122+ messages in thread
From: Kasslatter Fritz @ 2000-07-25 10:21 UTC (permalink / raw)
  To: 'mtd@infradead.org'

unsubscribe

-------------------------------------------------------------------
> SIEMENS     	       Siemens AG Österreich PSE PRO CDA5
>                                       Software 
>                      	       A-1031 WIEN,   
>                                       Erdbergerlaende 26, Zi. C3266
>                                       Tel  +43 1 1707 37929
> D.I.                                Fax +43 1 1707 57911
> Fritz Kasslatter         mailto:fritz.kasslatter@siemens.at
>                                       PGP-Key on Request
> 


To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

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

* unsubscribe
@ 1999-07-06  8:37 Torbjorn Gannholm
  0 siblings, 0 replies; 122+ messages in thread
From: Torbjorn Gannholm @ 1999-07-06  8:37 UTC (permalink / raw)
  To: linux



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

* unsubscribe
@ 1999-06-11  0:58 Deni Connor
  0 siblings, 0 replies; 122+ messages in thread
From: Deni Connor @ 1999-06-11  0:58 UTC (permalink / raw)
  To: linux

unsubscribe

Senior Editor

<color><param>0000,0000,ffff</param>Network</color> World

Covering servers and storage


8815 Mountain Path Circle

Austin, Texas 78759

(512) 345-3850

Fax: (512) 345-3860

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

* Re: unsubscribe
  1999-04-02 12:37 unsubscribe Carbon Monoxide
@ 1999-04-02 13:06 ` Koundinya.K
  0 siblings, 0 replies; 122+ messages in thread
From: Koundinya.K @ 1999-04-02 13:06 UTC (permalink / raw)
  To: Carbon Monoxide; +Cc: linux

please refer to the list policy to unsubscribe. You are not doing it right 
by sending a mail to this id...Doing so is considered bad.

You can use

linux-request@relay.engr.sgi.com
Majordomo@relay.engr.sgi.com

Koundinya

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

* unsubscribe
@ 1999-04-02 12:37 Carbon Monoxide
  1999-04-02 13:06 ` unsubscribe Koundinya.K
  0 siblings, 1 reply; 122+ messages in thread
From: Carbon Monoxide @ 1999-04-02 12:37 UTC (permalink / raw)
  To: linux

unsubscribe

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

end of thread, other threads:[~2024-04-03 15:57 UTC | newest]

Thread overview: 122+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-07 14:15 unsubscribe Punky
  -- strict thread matches above, loose matches on Subject: below --
2024-04-03  8:04 [PATCH v5 00/22] RISC-V SBI v2.0 PMU improvements and Perf sampling in KVM guest Atish Patra
2024-04-03  8:04 ` [PATCH v5 04/22] drivers/perf: riscv: Use BIT macro for shifting operations Atish Patra
2024-04-03 15:57   ` unsubscribe jonathan.oleson
2024-02-14 20:51 unsubscribe Igor Andreev
2024-01-15  8:19 unsubscribe limin yin
2023-12-13 17:30 unsubscribe Hank Barta
2023-11-25 16:50 unsubscribe Emmanuel ALLAUD
2023-06-20  6:46 unsubscribe Yao Yongxian
2023-05-02 23:36 [XEN][PATCH v6 00/19] dynamic node programming using overlay dtbo Vikram Garhwal
2023-05-02 23:36 ` [XEN][PATCH v6 08/19] xen/device-tree: Add device_tree_find_node_by_path() to find nodes in device tree Vikram Garhwal
2023-05-04  4:23   ` Henry Wang
2023-05-04  5:56     ` unsubscribe Terry Yang
2023-03-11  3:39 Unsubscribe Aviral Gupta
2022-12-01  1:38 unsubscribe Chan Kim
2022-10-13 10:14 unsubscribe Benjamin Demartin
2022-10-31 16:21 ` unsubscribe Thomas Monjalon
2022-06-29 21:00 unsubscribe Alvin Šipraga
2022-06-29 21:10 ` unsubscribe Alvin Šipraga
2021-11-02  6:37 unsubscribe Jacky Wang (王亮)-浪潮数据
2021-09-30 21:48 unsubscribe Shoaib Rao
2021-09-30 21:49 ` unsubscribe Shoaib Rao
2020-12-29  8:54 unsubscribe Shawn Landden
2020-12-21  7:28 unsubscribe Shawn Landden
2020-10-07 15:34 unsubscribe Thompson, Kent
     [not found] <CAGHfRMD3FP0_dAEmOgnkgyodXodWq2YcjaiOzvBwG=J1nqq-8g@mail.gmail.com>
2020-07-12 12:22 ` unsubscribe Philip Oakley
2019-05-29 15:32 Unsubscribe ID - David Torres
2019-03-14  7:34 overlayfs vs. fscrypt Miklos Szeredi
2019-03-14 17:15 ` [PATCH 4/4] ubifs: Implement new mount option, fscrypt_key_required Richard Weinberger
2019-03-14 17:49   ` Eric Biggers
2019-03-14 20:54     ` Richard Weinberger
2019-03-14 23:07       ` Theodore Ts'o
2019-03-15  0:26         ` Unsubscribe Shane Volpe
2019-03-07 14:13 unsubscribe Punky
2018-05-14 21:14 Unsubscribe Eric Brown
     [not found] <CGME20180128235454epcms1p6f3b7aa47ba9c5035f9b317421c09a46a@epcms1p6>
2018-01-28 23:54 ` unsubscribe 조동석
2017-06-20  7:57 unsubscribe Gary Thomas
2017-01-19 18:31 unsubscribe Brad Litterell
     [not found] <CGME20161205003536epcms1p4c6ce52ccda8bbc5da6eb99d3de8e12a3@epcms1p4>
2016-12-05  0:35 ` unsubscribe 조동석
2016-10-25 18:30 unsubscribe cybin
2016-10-05 12:53 unsubscribe 고영준
2016-08-16  6:44 unsubscribe kuangjiou
2016-04-18 23:21 unsubscribe cybin
     [not found] <CAOLmke5wWrewgemRGCfgMY7vnqsnAQcZHDteVWkLHWOj_kOYbA@mail.gmail.com>
2015-03-21 10:39 ` unsubscribe ye tao
2014-08-11 13:19 unsubscribe Deepak Pandian
2014-02-01  6:27 unsubscribe animan9
2013-11-22 19:35 unsubscribe Pow, Christopher (SWCOE)
2013-11-22 19:38 ` unsubscribe Denys Dmytriyenko
2013-10-02 15:58 unsubscribe Daniel Kranich
2013-09-15 13:52 unsubscribe GMAIL
2013-09-11  8:43 unsubscribe GMAIL
2012-05-01 18:53 Mysterious memory corruption bug Bean
2012-05-01 19:08 ` Vladimir 'φ-coder/phcoder' Serbinenko
2012-05-01 19:46   ` Bean
2012-05-01 19:52     ` Bean
2012-05-01 19:56       ` Vladimir 'φ-coder/phcoder' Serbinenko
2012-05-01 20:02         ` Bean
2012-05-01 20:06           ` Vladimir 'φ-coder/phcoder' Serbinenko
2012-05-01 20:09             ` Bean
2012-05-01 20:16               ` Vladimir 'φ-coder/phcoder' Serbinenko
2012-05-01 20:34                 ` Bean
2012-05-01 20:35                   ` unsubscribe Daniel Senderowicz
2012-05-01 20:43                     ` unsubscribe Gregg Levine
2011-11-14 17:26 unsubscribe Tietz Fabian (AA-DG/PAS-ESD2)
2011-02-28  2:25 Unsubscribe Tomasz Fujak
2011-01-06 17:42 unsubscribe marduk
2010-11-03  8:21 unsubscribe Roberto Mantovani
2010-10-19  8:51 unsubscribe Roberto Mantovani
2010-07-17 11:30 unsubscribe aiolos.cis90
2010-06-23 14:33 unsubscribe Frederic LEGER
2009-11-27 23:26 unsubscribe Gao Ya'nan
2009-11-28 17:02 ` unsubscribe Thomas Rinder
2009-02-04 13:48 unsubscribe Bietry, Ray
2009-02-04 13:19 unsubscribe ravi.rao
2009-02-04  8:11 unsubscribe Usha Rani Konudula
2009-01-24 21:46 unsubscribe Hai Zhu
2009-01-13  5:02 Unsubscribe shreeram
2009-01-12  8:29 unsubscribe Kunkel, Ulrich
2009-01-12  5:49 unsubscribe zhou.yutao
2009-01-12  9:06 ` unsubscribe Geert Uytterhoeven
2009-01-11 19:25 unsubscribe rsterling
2009-01-12  4:39 ` unsubscribe sandeep malik
2009-01-12 12:56 ` unsubscribe ravi.rao
2009-01-12 13:43   ` unsubscribe Rajasekaran Kaliyaperumal,  Chennai
2009-01-11 17:38 Unsubscribe Nadav Sharabi
2009-01-12  4:49 ` Unsubscribe Wei Jack
2009-01-11 10:02 unsubscribe Ignacio Vara
2009-01-11 16:13 ` unsubscribe List
2009-01-08  2:45 unsubscribe Yedu Jathavedan
2009-01-07 17:21 unsubscribe rsterling
2009-01-07 17:12 unsubscribe Wei Jack
2009-01-07 16:00 unsubscribe neeraj garg
2009-01-07  7:23 mpc5200 ATA DMA Peter Czanik
2009-01-07  7:58 ` Unsubscribe Landau, Bracha
2009-01-07  6:37 unsubscribe santhoshunnikrishnan
2009-01-07  7:27 ` unsubscribe Rustagi, Vikas
2009-01-07 15:32 ` unsubscribe Sungjoo Kim
2009-01-07  2:23 unsubscribe pravin
2009-01-06 17:59 unsubscribe hb fei
2009-01-07  1:55 ` unsubscribe Tao Xue
2009-01-07  6:32   ` unsubscribe AKS
2009-01-07  6:38     ` unsubscribe zhou.yutao
2009-01-07  7:42     ` unsubscribe Decherf, Patrick
2009-01-07  7:59       ` unsubscribe Liu Dave
2009-01-05 23:48 Unsubscribe JeongIn Choi
     [not found] <43FB4790A017E847A47C1D1FD108904E017B7C12@EXVBE011-1.exch011.int ermedia.net>
     [not found] ` <43FB4790A017E847A47C1D1FD108904E017B7C12@EXVBE011-1.exch011.in termedia.net>
2009-01-05 23:46   ` unsubscribe Ian Juang
2009-01-05 21:58 unsubscribe Iain Shewring
2009-01-05 21:32 unsubscribe Jim Rose
2009-01-05 21:49 ` unsubscribe Nate Jozwiak
2009-01-06  5:03   ` unsubscribe vikas.soni
2009-01-06 10:55     ` unsubscribe Paul Eaton
2009-01-05 18:03 unsubscribe Leonid
2009-01-05 19:06 ` unsubscribe Nitesh Guinde
2009-01-05 13:09 unsubscribe P Jagadeesh Maiya
2009-01-05  8:41 UNSUBSCRIBE Arun Kumar
2009-01-05  4:32 Unsubscribe Narendra KA
2009-01-05  4:33 ` Unsubscribe Steve Iribarne (GMail)
2009-01-06  7:39   ` Unsubscribe Tore Martin Hagen
2009-01-08  7:19     ` Unsubscribe Stephen Rothwell
2009-01-04 12:22 Unsubscribe Frank Lautenbach
2009-01-04 13:55 ` Unsubscribe Leon Woestenberg
2008-07-09 14:45 unsubscribe Ed Henderson
2007-06-12  1:14 unsubscribe Alexander Baldeck
2007-04-24 18:07 unsubscribe mike
2006-10-28  9:08 Is get_property() correct? Michael Ellerman
2006-10-30  2:05 ` unsubscribe Usha Rani Konudula
2006-10-12  9:56 unsubscribe Usha Rani Konudula
2006-07-25  4:32 unsubscribe umesh k
2006-06-09  9:19 unsubscribe rohitash panda
2006-02-27  4:10 unsubscribe shrisha.prasad
2006-02-13 18:39 unsubscribe Moloko Vellocet
2005-11-05 10:13 unsubscribe Geert Janssens
     [not found] <D3099360D13C2F4F8F3C12EADC7A346A023C5A7C@srsdmail.pv.com>
2005-01-05 21:55 ` UNSUBSCRIBE George Socker
     [not found] <000c01c4c04a$4f707720$974ffea9@a2i4y5>
2004-11-01 23:04 ` unsubscribe Jacob
2004-11-02  0:44   ` unsubscribe Lee Revell
2003-06-30 13:30 unsubscribe Fabio Sirna
2003-03-22 23:22 Encryption Pierre Abbat
2003-03-23  9:16 ` Snapshots a la NetApp? Heinz-Josef Claes
2003-03-24 20:49   ` Hans Reiser
2003-03-25  6:15     ` unsubscribe Voicu Liviu
2002-09-24  9:33 unsubscribe farnis=VGgt2q2+T+FeoWH0uzbU5w@public.gmane.org
2002-03-27 10:46 Unable to recover from CRC failiure Joakim Tjernlund
2002-03-27 17:00 ` unsubscribe Roy Sherrill
2000-07-25 10:21 unsubscribe Kasslatter Fritz
1999-07-06  8:37 unsubscribe Torbjorn Gannholm
1999-06-11  0:58 unsubscribe Deni Connor
1999-04-02 12:37 unsubscribe Carbon Monoxide
1999-04-02 13:06 ` unsubscribe Koundinya.K

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.