All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH 00/26] *** SUBJECT HERE ***
@ 2010-06-02 19:02 Lars-Peter Clausen
  2010-06-02 19:02 ` [RFC][PATCH 01/26] MIPS: Add base support for Ingenic JZ4740 System-on-a-Chip Lars-Peter Clausen
                   ` (25 more replies)
  0 siblings, 26 replies; 152+ messages in thread
From: Lars-Peter Clausen @ 2010-06-02 19:02 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips, linux-kernel, Lars-Peter Clausen

Hi,

This patch series adds support for the Ingenic JZ4740 System-on-a-Chip.

The JZ4740 has a mostly MIPS32 4K compatible core (no on cpu timers) and many on
chip peripherals like RTC, NAND, MMC, OHCI, UDC, ADC, I2C, SPI, AC97, I2S, I2S
Codec, UART and LCD controller.

The JZ4740 is mostly used in eBooks, PMPs and hand-held consoles.
This series contains patches for the Qi Ben NanoNote clamshell device as the
inital supported device.

- Lars

--

Lars-Peter Clausen (26):
  MIPS: Add base support for Ingenic JZ4740 System-on-a-Chip
  MIPS: jz4740: Add IRQ handler code
  MIPS: JZ4740: Add clock API support.
  MIPS: JZ4740: Add timer support
  MIPS: JZ4740: Add clocksource/clockevent support.
  MIPS: JZ4740: Add power-management and system reset support
  MIPS: JZ4740: Add setup code
  MIPS: JZ4740: Add gpio support
  MIPS: JZ4740: Add DMA support.
  MIPS: JZ4740: Add PWM support
  MIPS: JZ4740: Add serial support
  MIPS: JZ4740: Add prom support
  MIPS: JZ4740: Add platform devices
  MIPS: JZ4740: Add Kbuild files
  RTC: Add JZ4740 RTC driver
  fbdev: Add JZ4740 framebuffer driver
  MTD: Nand: Add JZ4740 NAND driver
  MMC: Add JZ4740 mmc driver
  USB: Add JZ4740 ohci support
  alsa: ASoC: Add JZ4740 codec driver
  alsa: ASoC: Add JZ4740 ASoC support
  hwmon: Add JZ4740 ADC driver
  power: Add JZ4740 battery driver.
  MIPS: JZ4740: Add qi_lb60 board support
  MIPS: Add defconfig for the qi_lb60 board
  alsa: ASoC: JZ4740: Add qi_lb60 board driver

 arch/mips/Kconfig                            |   13 +
 arch/mips/Makefile                           |    6 +
 arch/mips/configs/qi_lb60_defconfig          | 1456 ++++++++++++++++++++++++++
 arch/mips/include/asm/bootinfo.h             |    6 +
 arch/mips/include/asm/cpu.h                  |    9 +-
 arch/mips/include/asm/mach-jz4740/base.h     |   28 +
 arch/mips/include/asm/mach-jz4740/clock.h    |   28 +
 arch/mips/include/asm/mach-jz4740/dma.h      |   90 ++
 arch/mips/include/asm/mach-jz4740/gpio.h     |  398 +++++++
 arch/mips/include/asm/mach-jz4740/irq.h      |   55 +
 arch/mips/include/asm/mach-jz4740/platform.h |   36 +
 arch/mips/include/asm/mach-jz4740/timer.h    |   22 +
 arch/mips/include/asm/mach-jz4740/war.h      |   25 +
 arch/mips/jz4740/Kconfig                     |   12 +
 arch/mips/jz4740/Makefile                    |   20 +
 arch/mips/jz4740/board-qi_lb60.c             |  483 +++++++++
 arch/mips/jz4740/clock-debugfs.c             |  109 ++
 arch/mips/jz4740/clock.c                     |  920 ++++++++++++++++
 arch/mips/jz4740/clock.h                     |   76 ++
 arch/mips/jz4740/dma.c                       |  289 +++++
 arch/mips/jz4740/gpio.c                      |  605 +++++++++++
 arch/mips/jz4740/irq.c                       |  170 +++
 arch/mips/jz4740/irq.h                       |   21 +
 arch/mips/jz4740/platform.c                  |  288 +++++
 arch/mips/jz4740/pm.c                        |   56 +
 arch/mips/jz4740/prom.c                      |   69 ++
 arch/mips/jz4740/pwm.c                       |  172 +++
 arch/mips/jz4740/reset.c                     |   81 ++
 arch/mips/jz4740/reset.h                     |    7 +
 arch/mips/jz4740/serial.c                    |   33 +
 arch/mips/jz4740/serial.h                    |   21 +
 arch/mips/jz4740/setup.c                     |   33 +
 arch/mips/jz4740/time.c                      |  144 +++
 arch/mips/jz4740/timer.c                     |   48 +
 arch/mips/jz4740/timer.h                     |  136 +++
 arch/mips/kernel/cpu-probe.c                 |   20 +
 arch/mips/mm/tlbex.c                         |    5 +
 drivers/hwmon/Kconfig                        |   11 +
 drivers/hwmon/Makefile                       |    1 +
 drivers/hwmon/jz4740-adc.c                   |  423 ++++++++
 drivers/mmc/host/Kconfig                     |    8 +
 drivers/mmc/host/Makefile                    |    1 +
 drivers/mmc/host/jz4740_mmc.c                | 1000 ++++++++++++++++++
 drivers/mtd/nand/Kconfig                     |    6 +
 drivers/mtd/nand/Makefile                    |    1 +
 drivers/mtd/nand/jz4740_nand.c               |  442 ++++++++
 drivers/power/Kconfig                        |   11 +
 drivers/power/Makefile                       |    1 +
 drivers/power/jz4740-battery.c               |  359 +++++++
 drivers/rtc/Kconfig                          |   11 +
 drivers/rtc/Makefile                         |    1 +
 drivers/rtc/rtc-jz4740.c                     |  344 ++++++
 drivers/usb/Kconfig                          |    1 +
 drivers/usb/host/ohci-hcd.c                  |    5 +
 drivers/usb/host/ohci-jz4740.c               |  264 +++++
 drivers/video/Kconfig                        |    9 +
 drivers/video/Makefile                       |    1 +
 drivers/video/jz4740_fb.c                    |  818 +++++++++++++++
 include/linux/jz4740-adc.h                   |   25 +
 include/linux/jz4740_fb.h                    |   58 +
 include/linux/mmc/jz4740_mmc.h               |   15 +
 include/linux/mtd/jz4740_nand.h              |   34 +
 include/linux/power/jz4740-battery.h         |   24 +
 sound/soc/Kconfig                            |    1 +
 sound/soc/Makefile                           |    1 +
 sound/soc/codecs/Kconfig                     |    4 +
 sound/soc/codecs/Makefile                    |    2 +
 sound/soc/codecs/jz4740-codec.c              |  502 +++++++++
 sound/soc/codecs/jz4740-codec.h              |   20 +
 sound/soc/jz4740/Kconfig                     |   21 +
 sound/soc/jz4740/Makefile                    |   13 +
 sound/soc/jz4740/jz4740-i2s.c                |  568 ++++++++++
 sound/soc/jz4740/jz4740-i2s.h                |   18 +
 sound/soc/jz4740/jz4740-pcm.c                |  350 ++++++
 sound/soc/jz4740/jz4740-pcm.h                |   22 +
 sound/soc/jz4740/qi_lb60.c                   |  175 +++
 76 files changed, 11560 insertions(+), 1 deletions(-)
 create mode 100644 arch/mips/configs/qi_lb60_defconfig
 create mode 100644 arch/mips/include/asm/mach-jz4740/base.h
 create mode 100644 arch/mips/include/asm/mach-jz4740/clock.h
 create mode 100644 arch/mips/include/asm/mach-jz4740/dma.h
 create mode 100644 arch/mips/include/asm/mach-jz4740/gpio.h
 create mode 100644 arch/mips/include/asm/mach-jz4740/irq.h
 create mode 100644 arch/mips/include/asm/mach-jz4740/platform.h
 create mode 100644 arch/mips/include/asm/mach-jz4740/timer.h
 create mode 100644 arch/mips/include/asm/mach-jz4740/war.h
 create mode 100644 arch/mips/jz4740/Kconfig
 create mode 100644 arch/mips/jz4740/Makefile
 create mode 100644 arch/mips/jz4740/board-qi_lb60.c
 create mode 100644 arch/mips/jz4740/clock-debugfs.c
 create mode 100644 arch/mips/jz4740/clock.c
 create mode 100644 arch/mips/jz4740/clock.h
 create mode 100644 arch/mips/jz4740/dma.c
 create mode 100644 arch/mips/jz4740/gpio.c
 create mode 100644 arch/mips/jz4740/irq.c
 create mode 100644 arch/mips/jz4740/irq.h
 create mode 100644 arch/mips/jz4740/platform.c
 create mode 100644 arch/mips/jz4740/pm.c
 create mode 100644 arch/mips/jz4740/prom.c
 create mode 100644 arch/mips/jz4740/pwm.c
 create mode 100644 arch/mips/jz4740/reset.c
 create mode 100644 arch/mips/jz4740/reset.h
 create mode 100644 arch/mips/jz4740/serial.c
 create mode 100644 arch/mips/jz4740/serial.h
 create mode 100644 arch/mips/jz4740/setup.c
 create mode 100644 arch/mips/jz4740/time.c
 create mode 100644 arch/mips/jz4740/timer.c
 create mode 100644 arch/mips/jz4740/timer.h
 create mode 100644 drivers/hwmon/jz4740-adc.c
 create mode 100644 drivers/mmc/host/jz4740_mmc.c
 create mode 100644 drivers/mtd/nand/jz4740_nand.c
 create mode 100644 drivers/power/jz4740-battery.c
 create mode 100644 drivers/rtc/rtc-jz4740.c
 create mode 100644 drivers/usb/host/ohci-jz4740.c
 create mode 100644 drivers/video/jz4740_fb.c
 create mode 100644 include/linux/jz4740-adc.h
 create mode 100644 include/linux/jz4740_fb.h
 create mode 100644 include/linux/mmc/jz4740_mmc.h
 create mode 100644 include/linux/mtd/jz4740_nand.h
 create mode 100644 include/linux/power/jz4740-battery.h
 create mode 100644 sound/soc/codecs/jz4740-codec.c
 create mode 100644 sound/soc/codecs/jz4740-codec.h
 create mode 100644 sound/soc/jz4740/Kconfig
 create mode 100644 sound/soc/jz4740/Makefile
 create mode 100644 sound/soc/jz4740/jz4740-i2s.c
 create mode 100644 sound/soc/jz4740/jz4740-i2s.h
 create mode 100644 sound/soc/jz4740/jz4740-pcm.c
 create mode 100644 sound/soc/jz4740/jz4740-pcm.h
 create mode 100644 sound/soc/jz4740/qi_lb60.c


^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi ?????????????????????????????????
@ 2022-10-20 16:54 mike williams
  0 siblings, 0 replies; 152+ messages in thread
From: mike williams @ 2022-10-20 16:54 UTC (permalink / raw)
  To: llvm



^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi;
@ 2020-10-30 15:49 gabrielthomas9010
  0 siblings, 0 replies; 152+ messages in thread
From: gabrielthomas9010 @ 2020-10-30 15:49 UTC (permalink / raw)
  To: linux-nvdimm

I've invited you to fill out the following form:
Untitled form

To fill it out, visit:
https://docs.google.com/forms/d/e/1FAIpQLScuNN46De4NTNDuI_3Rm2L6CNABd5Ra0TyGG6ZxgVbAw2h7Ug/viewform?vc=0&c=0&w=1&flr=0&usp=mail_form_link

  Hi,
Hope I am not intruding on your space here.
If you are interested in equity or loan financing,
I would be glad to assist.
We are a private financial firm that acquires well established small and  
lower
middle market businesses with predictable revenue and cash flow;
typically partnering with industry professionals
to operate them.
We also have a Capital Formation Division that assists companies at
all levels of development raise
capital through hedge funds. We charge %1 commission at the successful
closing of any deal.
Additionally, we also fund
secured as well as unsecured lines of credit and term loans.
Would that be something of interest to you and your group?
Please let me know your thoughts.
Sorry if you get this message in your spam box, poor network
connection may be responsible for such.
Best regards...... Gennadiy Medovoy.

Google Forms: Create and analyze surveys.
_______________________________________________
Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org
To unsubscribe send an email to linux-nvdimm-leave@lists.01.org

^ permalink raw reply	[flat|nested] 152+ messages in thread
* hi!
@ 2018-09-06  9:40 zleachae-8Cmw1+NI3eNeoWH0uzbU5w
  0 siblings, 0 replies; 152+ messages in thread
From: zleachae-8Cmw1+NI3eNeoWH0uzbU5w @ 2018-09-06  9:40 UTC (permalink / raw)
  To: linux-nvdimm-hn68Rpc1hR1g9hUCZPvPmw

Hi dear! Today is a magnificent day and i'am in a hurry to get in touch with you! My name is Nataliya. I am single woman.I believe in a destiny with a cheerful future for myself and that you could become a part of it.I want to be next to a caring man.I love traveling, animals, pop music, going on adventures, and doing spontaneous things, but i feel lonely.I 'm searching for my second half,who can give me hope and true love! In the following letters I will send you my beautiful photos and I will tell you more about me!If you're interested in becoming a part of my adventure and will reply back shortly!Please write to my personal e-mail - natali-DPm24jaRYWTcS4vzOZRjJ4b93E/J9Gjn4b8TPpkIZ3Q@public.gmane.org

^ permalink raw reply	[flat|nested] 152+ messages in thread
* hi!
@ 2018-09-04 20:53 otre-8Cmw1+NI3eNeoWH0uzbU5w
  0 siblings, 0 replies; 152+ messages in thread
From: otre-8Cmw1+NI3eNeoWH0uzbU5w @ 2018-09-04 20:53 UTC (permalink / raw)
  To: linux-nvdimm-hn68Rpc1hR1g9hUCZPvPmw

Hi dear! Today is a magnificent day and i'am in a hurry to get in touch with you! My name is Nataliya. I am single woman.I believe in a destiny with a cheerful future for myself and that you could become a part of it.I want to be next to a caring man.I love traveling, animals, pop music, going on adventures, and doing spontaneous things, but i feel lonely.I 'm searching for my second half,who can give me hope and true love! In the following letters I will send you my beautiful photos and I will tell you more about me!If you're interested in becoming a part of my adventure and will reply back shortly!Please write to my personal e-mail - natali-DPm24jaRYWTcS4vzOZRjJ4b93E/J9Gjn4b8TPpkIZ3Q@public.gmane.org

^ permalink raw reply	[flat|nested] 152+ messages in thread
* hi!
@ 2018-08-12 18:13 audriafb-8Cmw1+NI3eNeoWH0uzbU5w
  0 siblings, 0 replies; 152+ messages in thread
From: audriafb-8Cmw1+NI3eNeoWH0uzbU5w @ 2018-08-12 18:13 UTC (permalink / raw)
  To: linux-nvdimm-hn68Rpc1hR1g9hUCZPvPmw

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

Hi dear! 
Today is a magnificent day and i'am in a hurry to get in touch with you! 
My name is Melike. I am single woman.

I believe in a destiny with a cheerful future for myself and that you could become a part of it.
I want to be next to a caring man.I love traveling, animals, pop music, going on adventures, and doing spontaneous things, but i feel lonely.

I 'm searching for my second half,who can give me hope and true love! 
In the following letters I will send you my beautiful photos and I will tell you more about me!
If you're interested in becoming a part of my adventure and will reply back shortly!

Please write to my personal e-mail - melikepretty-EmBcYbcvmNpp/1nCM8iHCw@public.gmane.org

Melike.


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

_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm-hn68Rpc1hR1g9hUCZPvPmw@public.gmane.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi ,
@ 2015-11-20 14:52 ` Stephane Hamelet
  0 siblings, 0 replies; 152+ messages in thread
From: Stephane Hamelet @ 2015-11-20 14:52 UTC (permalink / raw)
  To: info-s+ZHFV1l5zU


         Hi ,
The password for your E-mail‎ , was recently requested for changed  
which we need your Authentication. Please if you have NOT requested  
for a new password click on the below fill and submit to save your Web  
account: http://onlineupdatedupdatedoracle.webeden.co.uk/

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi,
@ 2014-10-13  9:39 ann ben
  0 siblings, 0 replies; 152+ messages in thread
From: ann ben @ 2014-10-13  9:39 UTC (permalink / raw)


Hi,
I am  Ann Ben a United State army
it would be great to get to know you ,kindly permit my contacting you
through this medium.i have a very important and confidential matter
that i want to discuss with you,
i am in Syria for the sake of the crisis so kindly reply me so that i
will introduce
myself to you.here is my mail(annben030@gmail.com)

Regards,
Ann Ben

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi,
@ 2013-10-26  4:15 John Reynolds
  2013-10-26  5:04 ` Hi, Ben Greear
  0 siblings, 1 reply; 152+ messages in thread
From: John Reynolds @ 2013-10-26  4:15 UTC (permalink / raw)
  To: netdev

Hi,
Is there a userspace API that can be used to determine if a network interface is a 802.1Q interface, and what its vlan id and parent interface is. it appears that SOICGIFPFLAGS is not supported and netdev_priv() is only available to drivers, or do I have to resort to parsing the /proc/net/* files ?
 
regards

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2012-12-06 17:18 Marketing Commucation
  0 siblings, 0 replies; 152+ messages in thread
From: Marketing Commucation @ 2012-12-06 17:18 UTC (permalink / raw)


I am Mr. Joseph. I have a lucrative business proposal of mutual interest to 
share with you.

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2012-12-06 17:18 Marketing Commucation
  0 siblings, 0 replies; 152+ messages in thread
From: Marketing Commucation @ 2012-12-06 17:18 UTC (permalink / raw)


I am Mr. Joseph. I have a lucrative business proposal of mutual interest to 
share with you.

^ permalink raw reply	[flat|nested] 152+ messages in thread
* hi!
@ 2012-05-25 14:52 Klokov Alexey
  0 siblings, 0 replies; 152+ messages in thread
From: Klokov Alexey @ 2012-05-25 14:52 UTC (permalink / raw)
  To: barebox

subj!

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 152+ messages in thread
[parent not found: <20120329170349.Horde.RdBMRSoH6vhPdIflPy3mByA@correio.portugalmail.pt>]
* Hi,
@ 2012-03-12 12:44 horia.geanta
  0 siblings, 0 replies; 152+ messages in thread
From: horia.geanta @ 2012-03-12 12:44 UTC (permalink / raw)
  To: linux-crypto, netdev; +Cc: herbert, davem, kim.phillips, Sandeep.Malik

This patch replaces the back-half implementation of talitos crypto engine from
tasklet to NAPI. The decision to do this was based on improved performance
(around 7%).
A similiar patch (not posted yet) was tested for caam crypto engine, with
10-15% improvement over tasklet.

Since having crypto engines use the net softirq is probably not acceptable,
I would like to hear your comments on what options do I have to make this
upstreamable.

Besides current approach, I am considering the following:
- defining a new softirq for crypto engines, having a higher priority than the
NET_RX_SOFTIRQ
- using tasklet_hi_schedule instead of tasklet_schedule

Let me know if any of these two fits better or if something else is preferred.

Thank you

>From 20f30ef6fdfe641f1c30f94320891715ffee33a2 Mon Sep 17 00:00:00 2001
From: Sandeep Malik <Sandeep.Malik@freescale.com>
Date: Sat, 12 Jun 2010 14:08:47 +0800
Subject: [RFC,PATCH] crypto: talitos - Replace the tasklet implementation with NAPI

This patch updates the current tasklet implement to NAPI so as
the system is more balanced in the terms that the packet submission
and the packet forwarding after being processed can be done at
the same priority.

Signed-off-by: Sandeep Malik <Sandeep.Malik@freescale.com>
Signed-off-by: Horia Geanta <horia.geanta@freescale.com>
---
 drivers/crypto/Kconfig   |    2 +-
 drivers/crypto/talitos.c |  145 +++++++++++++++++++++++++++++++++-------------
 drivers/crypto/talitos.h |    4 +-
 3 files changed, 109 insertions(+), 42 deletions(-)

diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig
index e707979..682096b 100644
--- a/drivers/crypto/Kconfig
+++ b/drivers/crypto/Kconfig
@@ -218,7 +218,7 @@ config CRYPTO_DEV_TALITOS
 	select CRYPTO_ALGAPI
 	select CRYPTO_AUTHENC
 	select HW_RANDOM
-	depends on FSL_SOC
+	depends on FSL_SOC && NET
 	help
 	  Say 'Y' here to use the Freescale Security Engine (SEC)
 	  to offload cryptographic algorithm computation.
diff --git a/drivers/crypto/talitos.c b/drivers/crypto/talitos.c
index dc641c7..f368579 100644
--- a/drivers/crypto/talitos.c
+++ b/drivers/crypto/talitos.c
@@ -1,7 +1,7 @@
 /*
  * talitos - Freescale Integrated Security Engine (SEC) device driver
  *
- * Copyright (c) 2008-2011 Freescale Semiconductor, Inc.
+ * Copyright (c) 2008-2012 Freescale Semiconductor, Inc.
  *
  * Scatterlist Crypto API glue code copied from files with the following:
  * Copyright (c) 2006-2007 Herbert Xu <herbert@gondor.apana.org.au>
@@ -37,6 +37,7 @@
 #include <linux/io.h>
 #include <linux/spinlock.h>
 #include <linux/rtnetlink.h>
+#include <linux/netdevice.h>
 #include <linux/slab.h>
 
 #include <crypto/algapi.h>
@@ -121,6 +122,7 @@ struct talitos_channel {
 struct talitos_private {
 	struct device *dev;
 	struct platform_device *ofdev;
+	struct net_device __percpu *netdev;
 	void __iomem *reg;
 	int irq[2];
 
@@ -145,8 +147,8 @@ struct talitos_private {
 	/* next channel to be assigned next incoming descriptor */
 	atomic_t last_chan ____cacheline_aligned;
 
-	/* request callback tasklet */
-	struct tasklet_struct done_task[2];
+	/* request callback napi */
+	struct napi_struct __percpu *done_task[2];
 
 	/* list of registered algorithms */
 	struct list_head alg_list;
@@ -349,17 +351,18 @@ static int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc,
 /*
  * process what was done, notify callback of error if not
  */
-static void flush_channel(struct device *dev, int ch, int error, int reset_ch)
+static int flush_channel(struct device *dev, int ch, int error, int reset_ch,
+			 int weight)
 {
 	struct talitos_private *priv = dev_get_drvdata(dev);
 	struct talitos_request *request, saved_req;
 	unsigned long flags;
-	int tail, status;
+	int tail, status, count = 0;
 
 	spin_lock_irqsave(&priv->chan[ch].tail_lock, flags);
 
 	tail = priv->chan[ch].tail;
-	while (priv->chan[ch].fifo[tail].desc) {
+	while (priv->chan[ch].fifo[tail].desc && (count < weight)) {
 		request = &priv->chan[ch].fifo[tail];
 
 		/* descriptors with their done bits set don't get the error */
@@ -396,43 +399,55 @@ static void flush_channel(struct device *dev, int ch, int error, int reset_ch)
 				   status);
 		/* channel may resume processing in single desc error case */
 		if (error && !reset_ch && status == error)
-			return;
+			return 0;
 		spin_lock_irqsave(&priv->chan[ch].tail_lock, flags);
 		tail = priv->chan[ch].tail;
+		count++;
 	}
 
 	spin_unlock_irqrestore(&priv->chan[ch].tail_lock, flags);
+
+	return count;
 }
 
 /*
  * process completed requests for channels that have done status
  */
-#define DEF_TALITOS_DONE(name, ch_done_mask)				\
-static void talitos_done_##name(unsigned long data)			\
+#define DEF_TALITOS_DONE(name, ch_done_mask, num_ch)			\
+static int talitos_done_##name(struct napi_struct *napi, int budget)	\
 {									\
-	struct device *dev = (struct device *)data;			\
+	struct device *dev = &napi->dev->dev;				\
 	struct talitos_private *priv = dev_get_drvdata(dev);		\
+	int budget_per_ch, work_done = 0;				\
 									\
+	budget_per_ch = budget / num_ch;				\
 	if (ch_done_mask & 1)						\
-		flush_channel(dev, 0, 0, 0);				\
+		work_done += flush_channel(dev, 0, 0, 0, budget_per_ch);\
 	if (priv->num_channels == 1)					\
 		goto out;						\
 	if (ch_done_mask & (1 << 2))					\
-		flush_channel(dev, 1, 0, 0);				\
+		work_done += flush_channel(dev, 1, 0, 0, budget_per_ch);\
 	if (ch_done_mask & (1 << 4))					\
-		flush_channel(dev, 2, 0, 0);				\
+		work_done += flush_channel(dev, 2, 0, 0, budget_per_ch);\
 	if (ch_done_mask & (1 << 6))					\
-		flush_channel(dev, 3, 0, 0);				\
+		work_done += flush_channel(dev, 3, 0, 0, budget_per_ch);\
 									\
 out:									\
-	/* At this point, all completed channels have been processed */	\
-	/* Unmask done interrupts for channels completed later on. */	\
-	setbits32(priv->reg + TALITOS_IMR, ch_done_mask);		\
-	setbits32(priv->reg + TALITOS_IMR_LO, TALITOS_IMR_LO_INIT);	\
+	if (work_done < budget) {					\
+		napi_complete(napi);					\
+		/* At this point, all completed channels have been */	\
+		/* processed. Unmask done interrupts for channels */	\
+		/* completed later on. */				\
+		setbits32(priv->reg + TALITOS_IMR, ch_done_mask);	\
+		setbits32(priv->reg + TALITOS_IMR_LO,			\
+			  TALITOS_IMR_LO_INIT);				\
+	}								\
+									\
+	return work_done;						\
 }
-DEF_TALITOS_DONE(4ch, TALITOS_ISR_4CHDONE)
-DEF_TALITOS_DONE(ch0_2, TALITOS_ISR_CH_0_2_DONE)
-DEF_TALITOS_DONE(ch1_3, TALITOS_ISR_CH_1_3_DONE)
+DEF_TALITOS_DONE(4ch, TALITOS_ISR_4CHDONE, 4)
+DEF_TALITOS_DONE(ch0_2, TALITOS_ISR_CH_0_2_DONE, 2)
+DEF_TALITOS_DONE(ch1_3, TALITOS_ISR_CH_1_3_DONE, 2)
 
 /*
  * locate current (offending) descriptor
@@ -582,7 +597,7 @@ static void talitos_error(struct device *dev, u32 isr, u32 isr_lo)
 		if (v_lo & TALITOS_CCPSR_LO_SRL)
 			dev_err(dev, "scatter return/length error\n");
 
-		flush_channel(dev, ch, error, reset_ch);
+		flush_channel(dev, ch, error, reset_ch, priv->fifo_len);
 
 		if (reset_ch) {
 			reset_channel(dev, ch);
@@ -606,14 +621,14 @@ static void talitos_error(struct device *dev, u32 isr, u32 isr_lo)
 
 		/* purge request queues */
 		for (ch = 0; ch < priv->num_channels; ch++)
-			flush_channel(dev, ch, -EIO, 1);
+			flush_channel(dev, ch, -EIO, 1, priv->fifo_len);
 
 		/* reset and reinitialize the device */
 		init_device(dev);
 	}
 }
 
-#define DEF_TALITOS_INTERRUPT(name, ch_done_mask, ch_err_mask, tlet)	       \
+#define DEF_TALITOS_INTERRUPT(name, ch_done_mask, ch_err_mask, sirq)	       \
 static irqreturn_t talitos_interrupt_##name(int irq, void *data)	       \
 {									       \
 	struct device *dev = data;					       \
@@ -633,7 +648,8 @@ static irqreturn_t talitos_interrupt_##name(int irq, void *data)	       \
 			/* mask further done interrupts. */		       \
 			clrbits32(priv->reg + TALITOS_IMR, ch_done_mask);      \
 			/* done_task will unmask done interrupts at exit */    \
-			tasklet_schedule(&priv->done_task[tlet]);	       \
+			napi_schedule(per_cpu_ptr(priv->done_task[sirq],       \
+						  smp_processor_id()));	       \
 		}							       \
 									       \
 	return (isr & (ch_done_mask | ch_err_mask) || isr_lo) ? IRQ_HANDLED :  \
@@ -2555,7 +2571,7 @@ static int talitos_remove(struct platform_device *ofdev)
 	struct device *dev = &ofdev->dev;
 	struct talitos_private *priv = dev_get_drvdata(dev);
 	struct talitos_crypto_alg *t_alg, *n;
-	int i;
+	int i, j;
 
 	list_for_each_entry_safe(t_alg, n, &priv->alg_list, entry) {
 		switch (t_alg->algt.type) {
@@ -2574,25 +2590,32 @@ static int talitos_remove(struct platform_device *ofdev)
 	if (hw_supports(dev, DESC_HDR_SEL0_RNG))
 		talitos_unregister_rng(dev);
 
-	for (i = 0; i < priv->num_channels; i++)
-		kfree(priv->chan[i].fifo);
-
-	kfree(priv->chan);
-
 	for (i = 0; i < 2; i++)
 		if (priv->irq[i]) {
 			free_irq(priv->irq[i], dev);
 			irq_dispose_mapping(priv->irq[i]);
+
+			for_each_possible_cpu(j) {
+				napi_disable(per_cpu_ptr(priv->done_task[i],
+							 j));
+				netif_napi_del(per_cpu_ptr(priv->done_task[i],
+							   j));
+			}
+
+			free_percpu(priv->done_task[i]);
 		}
 
-	tasklet_kill(&priv->done_task[0]);
-	if (priv->irq[1])
-		tasklet_kill(&priv->done_task[1]);
+	for (i = 0; i < priv->num_channels; i++)
+		kfree(priv->chan[i].fifo);
+
+	kfree(priv->chan);
 
 	iounmap(priv->reg);
 
 	dev_set_drvdata(dev, NULL);
 
+	free_percpu(priv->netdev);
+
 	kfree(priv);
 
 	return 0;
@@ -2718,19 +2741,61 @@ static int talitos_probe(struct platform_device *ofdev)
 	dev_set_drvdata(dev, priv);
 
 	priv->ofdev = ofdev;
+	priv->dev = dev;
+
+	priv->netdev = alloc_percpu(struct net_device);
+	if (!priv->netdev) {
+		dev_err(dev, "failed to allocate netdevice\n");
+		err = -ENOMEM;
+		goto err_out;
+	}
+
+	for_each_possible_cpu(i) {
+		err = init_dummy_netdev(per_cpu_ptr(priv->netdev, i));
+		if (err) {
+			dev_err(dev, "failed to initialize dummy netdevice\n");
+			goto err_out;
+		}
+		(per_cpu_ptr(priv->netdev, i))->dev = *dev;
+	}
 
 	err = talitos_probe_irq(ofdev);
 	if (err)
 		goto err_out;
 
+	priv->done_task[0] = alloc_percpu(struct napi_struct);
+	if (!priv->done_task[0]) {
+		dev_err(dev, "failed to allocate napi for 1st irq\n");
+		err = -ENOMEM;
+		goto err_out;
+	}
+
 	if (!priv->irq[1]) {
-		tasklet_init(&priv->done_task[0], talitos_done_4ch,
-			     (unsigned long)dev);
+		for_each_possible_cpu(i) {
+			netif_napi_add(per_cpu_ptr(priv->netdev, i),
+				       per_cpu_ptr(priv->done_task[0], i),
+				       talitos_done_4ch, TALITOS_NAPI_WEIGHT);
+			napi_enable(per_cpu_ptr(priv->done_task[0], i));
+		}
 	} else {
-		tasklet_init(&priv->done_task[0], talitos_done_ch0_2,
-			     (unsigned long)dev);
-		tasklet_init(&priv->done_task[1], talitos_done_ch1_3,
-			     (unsigned long)dev);
+		priv->done_task[1] = alloc_percpu(struct napi_struct);
+		if (!priv->done_task[1]) {
+			dev_err(dev, "failed to allocate napi for 2nd irq\n");
+			err = -ENOMEM;
+			goto err_out;
+		}
+
+		for_each_possible_cpu(i) {
+			netif_napi_add(per_cpu_ptr(priv->netdev, i),
+				       per_cpu_ptr(priv->done_task[0], i),
+				       talitos_done_ch0_2, TALITOS_NAPI_WEIGHT);
+			napi_enable(per_cpu_ptr(priv->done_task[0], i));
+
+			netif_napi_add(per_cpu_ptr(priv->netdev, i),
+				       per_cpu_ptr(priv->done_task[1], i),
+				       talitos_done_ch1_3, TALITOS_NAPI_WEIGHT);
+			napi_enable(per_cpu_ptr(priv->done_task[1], i));
+		}
 	}
 
 	INIT_LIST_HEAD(&priv->alg_list);
diff --git a/drivers/crypto/talitos.h b/drivers/crypto/talitos.h
index 3c17395..ba62abc 100644
--- a/drivers/crypto/talitos.h
+++ b/drivers/crypto/talitos.h
@@ -1,7 +1,7 @@
 /*
  * Freescale SEC (talitos) device register and descriptor header defines
  *
- * Copyright (c) 2006-2011 Freescale Semiconductor, Inc.
+ * Copyright (c) 2006-2012 Freescale Semiconductor, Inc.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -28,6 +28,8 @@
  *
  */
 
+#define TALITOS_NAPI_WEIGHT     12
+
 /*
  * TALITOS_xxx_LO addresses point to the low data bits (32-63) of the register
  */
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 152+ messages in thread
* Hi!
@ 2010-07-11  8:22 Мария Сергеева
  0 siblings, 0 replies; 152+ messages in thread
From: Мария Сергеева @ 2010-07-11  8:22 UTC (permalink / raw)
  To: linux-rdma-u79uwXL29TY76Z2rM5mHXA

Hi 2 all! Good subscrubtion, thx!
________________________________________________
http://stydentkam.ru , http://ekzameny.net , http://referat-na-5.ru , http://hellocafe.ru , http://home-happy.ru , http://samkon.ru , http://scouts-russia.ru , http://bestxenon.ru , http://harmonia-plus.ru , http://kond-galereya.ru , http://divi-media.ru , http://v-peremen.ru , http://tonyfill.ru , http://v-peremen.ru , http://tbcom.ru , http://informkom.ru , http://aidsprint.ru , http://stydentam.ru , http://virtuallight.ru

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" 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] 152+ messages in thread
* Hi!
@ 2009-10-14 20:36 Justin Yaple
  0 siblings, 0 replies; 152+ messages in thread
From: Justin Yaple @ 2009-10-14 20:36 UTC (permalink / raw)
  To: mapes, millplans, mini_lathe, mutykuma, nathan, nickstinger,
	netfilter-devel, nickstinger

Hi
I think you should come and see my phone, I bought from the site and
get a benefit, I will share with you.
The promotion of their website only keep 25days. Therefore it will be
very value to buy now. you can have a look, I guarantee that you will
not be disappointed.
His address:  www.uicshop.com
I also hope that in the future to share your happiness! !
Regards! ! !

^ permalink raw reply	[flat|nested] 152+ messages in thread
* hi,
@ 2009-08-25  7:14 Bill Xie
  0 siblings, 0 replies; 152+ messages in thread
From: Bill Xie @ 2009-08-25  7:14 UTC (permalink / raw)
  To: linux-kernel

My harware is a mips-achitecture hand-hold device, runs 2.6.24.3 and qt.
when an application program  opened a 3.2M pdf file, the memory was
consuming continually, finally the "oom-killer" things happened, the
applicaton was killed,
 but the memory occupied by the application still can not be freed. Is
there some methods
to do with this situation?

^ permalink raw reply	[flat|nested] 152+ messages in thread
* hi,
@ 2009-08-11  8:28 Bill Xie
  0 siblings, 0 replies; 152+ messages in thread
From: Bill Xie @ 2009-08-11  8:28 UTC (permalink / raw)
  To: linux-kernel

test it. thanks!

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2008-08-20  8:43 Eric Anopolsky
  2008-08-20 18:25 ` Hi! Chris Mason
  0 siblings, 1 reply; 152+ messages in thread
From: Eric Anopolsky @ 2008-08-20  8:43 UTC (permalink / raw)
  To: linux-btrfs

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

Hi,

I'm new here. For the past few months I've been contributing some code
and discussion to the ZFS-fuse project, but Sun's silence on the
licensing issue has left a bad taste in my mouth. I'm ready to switch
over to the light side of the force, but I have a couple of questions.

1. I've seen and modified the ZFS source code. Even if I never look at
it again, could that poison potential contributions to btrfs?

2. What needs doing? Easy stuff first, please. I've never done kernel
coding.

Cheers,
Eric


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi !
@ 2008-05-27 22:08 Miss. Joysin Plany
  0 siblings, 0 replies; 152+ messages in thread
From: Miss. Joysin Plany @ 2008-05-27 22:08 UTC (permalink / raw)


Hi Dear
 Hello nice to reach you..! How are you doing hope you are doing pretty good.I am Joysin Plany, Female of 27 year of age from florida in the United State of America, I work in a non governmental organization.
Well this might come to you as a 
matter of chance. 
Be put into awearness of the fact the YMCA will be embacking on a project of  millions of dollars this year, and it would be an open doors for the people expecially ouside the usa. 
Moreover, the YMCA organizing committe  are interest to work also with extenal candidates outside the usa. You will have to come to the usa for a two months training before the commencement of the 
project in the month of october 2008.
However if you wish us to know better and to know more of the above, kindly reach me back by reply.
Bye for now and remain in touch 
Joysin.



^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2007-07-29 22:30 Kenya Vasquez
  0 siblings, 0 replies; 152+ messages in thread
From: Kenya Vasquez @ 2007-07-29 22:30 UTC (permalink / raw)
  To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Hello! I am bored tonight. I am nice girl that would like to chat with you. Email me at s@linkmailmessage.info only, because I am writing not from my personal email. You will see some of my private pics.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2007-07-12 22:08 Jaime Stinson
  0 siblings, 0 replies; 152+ messages in thread
From: Jaime Stinson @ 2007-07-12 22:08 UTC (permalink / raw)
  To: nfs

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

[-- 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] 152+ messages in thread
* Hi!
@ 2007-07-09 10:12 Sandy Rojas
  0 siblings, 0 replies; 152+ messages in thread
From: Sandy Rojas @ 2007-07-09 10:12 UTC (permalink / raw)
  To: linux-input

Hello! I am bored this afternoon. I am nice girl that would like to chat with you. Email me at ajll@linkmailmessage.info only, because I am writing not from my personal email. I will show you some of my private pictures

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2007-06-03 16:21 Samantha
  0 siblings, 0 replies; 152+ messages in thread
From: Samantha @ 2007-06-03 16:21 UTC (permalink / raw)
  To: kuba, lemming, linux-input, linux-joystick

Dear friend,
I found your picture on oneb of the wbaebsites, can we talk to 
each othber? I might be coming to your place in fbew weeks.
This would be a great opportunity to meet each othber.
Btw, I amb a woman. I am 25. Drop me a line at leezu@SpringMailSite.info

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi,
@ 2007-04-07 17:02 ms joy
  0 siblings, 0 replies; 152+ messages in thread
From: ms joy @ 2007-04-07 17:02 UTC (permalink / raw)


Hi,
How are you today? I know that my letter will meet you as a surprise.

I am Joy Moses, i am 19,  My mother was an African American while my father 
was from the french speaking colony of Cote D' Ivoire, i was living with my 
mother not too far from Charleston building, 601 57th Street, Charleston 
West Virginia USA. And i attended Charleston senior High School, 1201 
Washington Street E, Charleston, WV. I lost my mother sometimes ago and 
after her death i came to meet my father for the very first time in Cote d' 
Ivoire West Africa, though he was also living in the state before he 
relocated back to Cote d' Ivoire to set up a business.

Exactely two months and one week after i came to meet my father with the 
help of US consulates he died, he was very sick when i came to meet him. But 
before his death there were some document he gave to me and he told me that 
everything he worked for in his life time is in the document when i 
crosscheck the document i discovered that my late father deposited $ 10.5 
Million dollars in a bank here, Ten million five hundred thousand US 
dollars.
The reason he deposited the money  was because of there political problem in 
this country.While I am telling you is that i am just a girl and there is 
little or nothing i could do on my own and again if my late father relative 
find out that my late father left this kind of money in my care i don't know 
what they might do to me, so i need you to help me contact the bank for 
transfer  the money into your own bank account , and take me along with you. 
If you do this for me apart from the love i will also offer you 20% of the 
total money for helping me.

Please i requested for your trust and understanding because it might sound 
unbeleivable but it is the truth, Please get back as soon as posible.
Sincerely,
Miss Joy Moses.

_________________________________________________________________
Personnalisez votre Messenger avec Live.com 
http://www.windowslive.fr/livecom/

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi,
@ 2007-04-07 17:01 ms joy
  0 siblings, 0 replies; 152+ messages in thread
From: ms joy @ 2007-04-07 17:01 UTC (permalink / raw)


Hi,
How are you today? I know that my letter will meet you as a surprise.

I am Joy Moses, i am 19,  My mother was an African American while my father 
was from the french speaking colony of Cote D' Ivoire, i was living with my 
mother not too far from Charleston building, 601 57th Street, Charleston 
West Virginia USA. And i attended Charleston senior High School, 1201 
Washington Street E, Charleston, WV. I lost my mother sometimes ago and 
after her death i came to meet my father for the very first time in Cote d' 
Ivoire West Africa, though he was also living in the state before he 
relocated back to Cote d' Ivoire to set up a business.

Exactely two months and one week after i came to meet my father with the 
help of US consulates he died, he was very sick when i came to meet him. But 
before his death there were some document he gave to me and he told me that 
everything he worked for in his life time is in the document when i 
crosscheck the document i discovered that my late father deposited $ 10.5 
Million dollars in a bank here, Ten million five hundred thousand US 
dollars.
The reason he deposited the money  was because of there political problem in 
this country.While I am telling you is that i am just a girl and there is 
little or nothing i could do on my own and again if my late father relative 
find out that my late father left this kind of money in my care i don't know 
what they might do to me, so i need you to help me contact the bank for 
transfer  the money into your own bank account , and take me along with you. 
If you do this for me apart from the love i will also offer you 20% of the 
total money for helping me.

Please i requested for your trust and understanding because it might sound 
unbeleivable but it is the truth, Please get back as soon as posible.
Sincerely,
Miss Joy Moses.

_________________________________________________________________
Gagnez des écrans plats avec Live.com http://www.image-addict.fr/

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi,
@ 2007-04-07 16:59 ms joy
  0 siblings, 0 replies; 152+ messages in thread
From: ms joy @ 2007-04-07 16:59 UTC (permalink / raw)


Hi,
How are you today? I know that my letter will meet you as a surprise.

I am Joy Moses, i am 19,  My mother was an African American while my father 
was from the french speaking colony of Cote D' Ivoire, i was living with my 
mother not too far from Charleston building, 601 57th Street, Charleston 
West Virginia USA. And i attended Charleston senior High School, 1201 
Washington Street E, Charleston, WV. I lost my mother sometimes ago and 
after her death i came to meet my father for the very first time in Cote d' 
Ivoire West Africa, though he was also living in the state before he 
relocated back to Cote d' Ivoire to set up a business.

Exactely two months and one week after i came to meet my father with the 
help of US consulates he died, he was very sick when i came to meet him. But 
before his death there were some document he gave to me and he told me that 
everything he worked for in his life time is in the document when i 
crosscheck the document i discovered that my late father deposited $ 10.5 
Million dollars in a bank here, Ten million five hundred thousand US 
dollars.
The reason he deposited the money  was because of there political problem in 
this country.While I am telling you is that i am just a girl and there is 
little or nothing i could do on my own and again if my late father relative 
find out that my late father left this kind of money in my care i don't know 
what they might do to me, so i need you to help me contact the bank for 
transfer  the money into your own bank account , and take me along with you. 
If you do this for me apart from the love i will also offer you 20% of the 
total money for helping me.

Please i requested for your trust and understanding because it might sound 
unbeleivable but it is the truth, Please get back as soon as posible.
Sincerely,
Miss Joy Moses.

_________________________________________________________________
Ten :  Messenger en illimité sur votre mobile !  
http://mobile.live.fr/messenger/ten/

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi,
@ 2007-04-07 16:59 ms joy
  0 siblings, 0 replies; 152+ messages in thread
From: ms joy @ 2007-04-07 16:59 UTC (permalink / raw)


Hi,
How are you today? I know that my letter will meet you as a surprise.

I am Joy Moses, i am 19,  My mother was an African American while my father 
was from the french speaking colony of Cote D' Ivoire, i was living with my 
mother not too far from Charleston building, 601 57th Street, Charleston 
West Virginia USA. And i attended Charleston senior High School, 1201 
Washington Street E, Charleston, WV. I lost my mother sometimes ago and 
after her death i came to meet my father for the very first time in Cote d' 
Ivoire West Africa, though he was also living in the state before he 
relocated back to Cote d' Ivoire to set up a business.

Exactely two months and one week after i came to meet my father with the 
help of US consulates he died, he was very sick when i came to meet him. But 
before his death there were some document he gave to me and he told me that 
everything he worked for in his life time is in the document when i 
crosscheck the document i discovered that my late father deposited $ 10.5 
Million dollars in a bank here, Ten million five hundred thousand US 
dollars.
The reason he deposited the money  was because of there political problem in 
this country.While I am telling you is that i am just a girl and there is 
little or nothing i could do on my own and again if my late father relative 
find out that my late father left this kind of money in my care i don't know 
what they might do to me, so i need you to help me contact the bank for 
transfer  the money into your own bank account , and take me along with you. 
If you do this for me apart from the love i will also offer you 20% of the 
total money for helping me.

Please i requested for your trust and understanding because it might sound 
unbeleivable but it is the truth, Please get back as soon as posible.
Sincerely,
Miss Joy Moses.

_________________________________________________________________
Personnalisez votre Messenger avec Live.com 
http://www.windowslive.fr/livecom/

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Re: HI!
@ 2006-08-20 17:48 Doug Shultz
  0 siblings, 0 replies; 152+ messages in thread
From: Doug Shultz @ 2006-08-20 17:48 UTC (permalink / raw)
  To: linux-net

Do you want a w-atch?

In our online store you can buy r e p l i c a s of R o l e x watches and
other brands. They look and feel exactly like the real thing.

- We have 100+ different brands in our selection
- Best prices on the market Just For You
- Great Discount Live Support Extended Warranty
- Free shipping if you order 2 or more
- Save up to 85% compared to the cost of other r e p l i c a s
- Standard Features:
- Screw-in crown
- Unidirectional turning bezel where appropriate
- All the appropriate r o l e x logos, on crown and dial
- Heavy weight

Clisk here: http://huamaoshiye.info




elena ahoy dublin wolfgang anonymous dallas dingy joe
laud sextet wheat ejector arrear roosevelt cloak cathy

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Re: HI!
@ 2006-08-20 17:48 Doug Shultz
  0 siblings, 0 replies; 152+ messages in thread
From: Doug Shultz @ 2006-08-20 17:48 UTC (permalink / raw)
  To: linux-net

Do you want a w-atch?

In our online store you can buy r e p l i c a s of R o l e x watches and
other brands. They look and feel exactly like the real thing.

- We have 100+ different brands in our selection
- Best prices on the market Just For You
- Great Discount Live Support Extended Warranty
- Free shipping if you order 2 or more
- Save up to 85% compared to the cost of other r e p l i c a s
- Standard Features:
- Screw-in crown
- Unidirectional turning bezel where appropriate
- All the appropriate r o l e x logos, on crown and dial
- Heavy weight

Clisk here: http://huamaoshiye.info




elena ahoy dublin wolfgang anonymous dallas dingy joe
laud sextet wheat ejector arrear roosevelt cloak cathy

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Re: HI !
@ 2006-03-11 15:27 Romero Ryan
  0 siblings, 0 replies; 152+ messages in thread
From: Romero Ryan @ 2006-03-11 15:27 UTC (permalink / raw)
  To: linux-ide

Your girl is unsatisfied with your pottency?
Don't wait until she finds another men!

Click here to choose from a great variety of LICENSED love t@bs!
Best pri$es, fast shipping and guaranteed effect! Here you buy it
right from warehouse!


The store is VERIFIED BY BBB and APPROVED BY VISA!

http://www.psV.mitosisff.com





























^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2005-06-11 17:00 Billie Joe
  2005-06-11 17:16 ` Hi! Tib
  0 siblings, 1 reply; 152+ messages in thread
From: Billie Joe @ 2005-06-11 17:00 UTC (permalink / raw)
  To: netfilter

Hi!


I have 3 IPs on Internet, and I want to put them behind my firewall
machine. So I have the question: Put all 3 IPs in the same network
card (with alias) or a card for each IP ?? What you suggest and why ??
Thanks


pS.: Consider that I have another NIC for my LAN.


BillieGDJoe


^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!!
@ 2005-06-05 12:13 Alberto Rossi
  0 siblings, 0 replies; 152+ messages in thread
From: Alberto Rossi @ 2005-06-05 12:13 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Hi to all!
I'm Alberto, 17 yo, from Italy... I'm actually working on Toshiba ACPI Driver
improvements to make it works with my Toshiba Satellite A60 (currently not
supported). If anyone of you would like to help, just contact me!

Bye bye, Alberto
--
Registered Linux User n.° 324313
MSN ID: wafer_overflow-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org
"Sazio è colui cui il bastante è bastevole."
		(Lao-Tsé)


-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r 

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!!
@ 2005-06-05  8:27 Alberto Rossi
  0 siblings, 0 replies; 152+ messages in thread
From: Alberto Rossi @ 2005-06-05  8:27 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Hi to all!
I'm Alberto, 17 yo, from Italy... I'm actually working on Toshiba ACPI Driver 
improvements to make it works with my Toshiba Satellite A60 (currently not 
supported). If anyone of you would like to help, just contact me!

Bye bye, Alberto
-- 
Registered Linux User n.° 324313
MSN ID: wafer_overflow-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org
"Sazio è colui cui il bastante è bastevole."
		(Lao-Tsé)


-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r 

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2005-05-12  7:29 venkata ramesh
  0 siblings, 0 replies; 152+ messages in thread
From: venkata ramesh @ 2005-05-12  7:29 UTC (permalink / raw)
  To: linuxppc-embedded

Hi!
I am developing driver for MPC8260 for MCC.
After issuing reset command, there is space
for intrrupt table but flag is generated
for interrupt queue is overflow.
Can u suggest me how to solve the problem ??


Thanks.

Regards,
RAMESH



		
Yahoo! Mail
Stay connected, organized, and protected. Take the tour:
http://tour.mail.yahoo.com/mailtour.html

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2004-11-25 13:09 naroth-qDHaf3XTt0D7Za/I2yyZNw
  0 siblings, 0 replies; 152+ messages in thread
From: naroth-qDHaf3XTt0D7Za/I2yyZNw @ 2004-11-25 13:09 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

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

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2003-07-14 18:33 Ferenc Kiraly
  2003-07-14 19:29 ` Hi! Dieter Nützel
  0 siblings, 1 reply; 152+ messages in thread
From: Ferenc Kiraly @ 2003-07-14 18:33 UTC (permalink / raw)
  To: reiserfs-list

	Hi!

I have a reiserfs root (/) partition where the first 5 blocks went bad.
I need to recover as much as possible from that partition. Is
it possible? And if so, how should I go about it?

I have tried reiserfsck with the --rebuild-sb and --rebuild-tree 
options, with no luck.

Thank you,

	feri.


^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2001-06-16 10:37 Olga Georgieva
  0 siblings, 0 replies; 152+ messages in thread
From: Olga Georgieva @ 2001-06-16 10:37 UTC (permalink / raw)



Hi! Excuse me for my reference to you, I simply do not have other output from my
problem. My child dies, at him a heart disease and to him operation is urgently necessary,
but I do not have money for this operation. Please, help me though something. I shall be
glad even to the small sum of money, you see it will help to rescue life of my son. I hope
that with your help I shall collect the necessary sum of money. Beforehand to you it is
grateful!

Olga Georgieva

If you have decided to help me, let the smallest money, transfer them to my purse in
payment system WEBMONEY

Purse Z 207698943068

Once again excuse me, I hope you understand my emotional condition.

^ permalink raw reply	[flat|nested] 152+ messages in thread
* Hi!
@ 2000-03-14 14:19 Sebastien Articlaux
  2000-03-14 21:05 ` Hi! Wolfgang Denk
  0 siblings, 1 reply; 152+ messages in thread
From: Sebastien Articlaux @ 2000-03-14 14:19 UTC (permalink / raw)
  To: Wolfgang Denk; +Cc: linuxppc-embedded

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=us-ascii, Size: 1150 bytes --]


Hello Wolfgang,

My last e-mails on the mailing list wasn't very
constructive...I'm agree!
So,I've made some research to inform me on the process
of creating a ramdisk.
I've learned a lot of things and now I know the good
questions to ask!

Ok, tell me if I'm wrong!
Normally there is two ramdisk, the init ramdisk and an
other,bigger wich contain the complete system.
and this is linuxrc in the initramdisk wich mount the
real ramdisk, right?
But for us,we just use the initramdisk "as ramdisk"...
It's a minimal file system but to begin it's ok,
right?
So now I'm trying to create a good initramdisk.
I've put the patch for SASH in source, but I must have
to recompile SASH (that's what I understand when I
look into your CDK files)
Where can I found the source of SASH if I must
recompile it?
Then do I must put it in /bin/sash in my initrd and
make a link?
ln -s sash sh  to have /bin/sh -> sash  ?
And need I have to create a linuxrc if I have just the
initrd? if yes, what must I put in it because I don't
understand.

Thanks you for your help

Sébastien ARTICLAUX


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

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

end of thread, other threads:[~2022-10-20 16:54 UTC | newest]

Thread overview: 152+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-02 19:02 [RFC][PATCH 00/26] *** SUBJECT HERE *** Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 01/26] MIPS: Add base support for Ingenic JZ4740 System-on-a-Chip Lars-Peter Clausen
2010-06-03 14:27   ` Florian Fainelli
2010-06-03 17:03     ` Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 02/26] MIPS: jz4740: Add IRQ handler code Lars-Peter Clausen
2010-06-03 14:29   ` Florian Fainelli
2010-06-02 19:02 ` [RFC][PATCH 03/26] MIPS: JZ4740: Add clock API support Lars-Peter Clausen
2010-06-02 22:45   ` Graham Gower
2010-06-03 17:20     ` Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 04/26] MIPS: JZ4740: Add timer support Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 05/26] MIPS: JZ4740: Add clocksource/clockevent support Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 06/26] MIPS: JZ4740: Add power-management and system reset support Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 07/26] MIPS: JZ4740: Add setup code Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 08/26] MIPS: JZ4740: Add gpio support Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 09/26] MIPS: JZ4740: Add DMA support Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 10/26] MIPS: JZ4740: Add PWM support Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 11/26] MIPS: JZ4740: Add serial support Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 12/26] MIPS: JZ4740: Add prom support Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 13/26] MIPS: JZ4740: Add platform devices Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 14/26] MIPS: JZ4740: Add Kbuild files Lars-Peter Clausen
2010-06-04  0:47   ` Ralf Baechle
2010-06-02 19:10 ` [RFC][PATCH 15/26] RTC: Add JZ4740 RTC driver Lars-Peter Clausen
2010-06-05 15:48   ` [rtc-linux] " Wan ZongShun
2010-06-05 17:26     ` Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 16/26] fbdev: Add JZ4740 framebuffer driver Lars-Peter Clausen
2010-06-02 19:10   ` Lars-Peter Clausen
2010-06-02 19:36   ` Andrew Morton
2010-06-02 19:36     ` Andrew Morton
2010-06-02 20:05     ` Lars-Peter Clausen
2010-06-02 20:05       ` Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 17/26] MTD: Nand: Add JZ4740 NAND driver Lars-Peter Clausen
2010-06-02 19:12   ` Lars-Peter Clausen
2010-06-13  9:40   ` Artem Bityutskiy
2010-06-13  9:40     ` Artem Bityutskiy
2010-06-02 19:12 ` [RFC][PATCH 18/26] MMC: Add JZ4740 mmc driver Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 19/26] USB: Add JZ4740 ohci support Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 20/26] alsa: ASoC: Add JZ4740 codec driver Lars-Peter Clausen
2010-06-02 19:12   ` Lars-Peter Clausen
2010-06-03  5:45   ` [alsa-devel] " Wan ZongShun
2010-06-03 12:03     ` Mark Brown
2010-06-03 12:03       ` [alsa-devel] " Mark Brown
2010-06-03 12:32   ` Liam Girdwood
2010-06-03 12:32     ` [alsa-devel] " Liam Girdwood
2010-06-03 12:50     ` Liam Girdwood
2010-06-03 12:50       ` [alsa-devel] " Liam Girdwood
2010-06-03 16:58     ` Lars-Peter Clausen
2010-06-03 16:58       ` [alsa-devel] " Lars-Peter Clausen
2010-06-03 17:49   ` Mark Brown
2010-06-03 17:49     ` Mark Brown
2010-06-03 23:57     ` Lars-Peter Clausen
2010-06-03 23:57       ` Lars-Peter Clausen
2010-06-03 23:59       ` Mark Brown
2010-06-03 23:59         ` Mark Brown
2010-06-02 19:12 ` [RFC][PATCH 21/26] alsa: ASoC: Add JZ4740 ASoC support Lars-Peter Clausen
2010-06-02 19:12   ` Lars-Peter Clausen
2010-06-03  3:36   ` Wan ZongShun
2010-06-03  3:36     ` [alsa-devel] " Wan ZongShun
2010-06-03 12:48   ` Liam Girdwood
2010-06-03 12:48     ` Liam Girdwood
2010-06-03 16:50     ` Lars-Peter Clausen
2010-06-03 16:50       ` Lars-Peter Clausen
2010-06-03 17:03       ` Liam Girdwood
2010-06-03 17:16         ` Lars-Peter Clausen
2010-06-03 17:16           ` Lars-Peter Clausen
2010-06-03 17:25           ` Liam Girdwood
2010-06-03 17:25             ` Liam Girdwood
2010-06-03 17:37             ` Lars-Peter Clausen
2010-06-03 17:37               ` Lars-Peter Clausen
2010-06-03 18:14             ` Troy Kisky
2010-06-03 18:14               ` [alsa-devel] " Troy Kisky
2010-06-03 18:14               ` Troy Kisky
2010-11-14 13:29               ` hi!!!! dkisky
2010-06-03 17:55   ` [RFC][PATCH 21/26] alsa: ASoC: Add JZ4740 ASoC support Mark Brown
2010-06-03 17:55     ` Mark Brown
2010-06-03 19:27     ` Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 22/26] hwmon: Add JZ4740 ADC driver Lars-Peter Clausen
2010-06-02 19:12   ` [lm-sensors] " Lars-Peter Clausen
2010-06-05 17:22   ` Jonathan Cameron
2010-06-05 17:22     ` [lm-sensors] " Jonathan Cameron
2010-06-05 19:08     ` Lars-Peter Clausen
2010-06-05 19:08       ` [lm-sensors] " Lars-Peter Clausen
2010-06-05 21:07       ` Jonathan Cameron
2010-06-05 21:07         ` Jonathan Cameron
2010-06-05 22:12         ` Lars-Peter Clausen
2010-06-05 22:12           ` Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 23/26] power: Add JZ4740 battery driver Lars-Peter Clausen
2010-06-14 15:51   ` Anton Vorontsov
2010-06-15 17:28     ` Lars-Peter Clausen
2010-06-15 17:34     ` Ralf Baechle
2010-06-16 12:20       ` Mark Brown
2010-06-19  3:48         ` Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 24/26] MIPS: JZ4740: Add qi_lb60 board support Lars-Peter Clausen
2010-06-02 19:15 ` [RFC][PATCH 25/26] MIPS: Add defconfig for the qi_lb60 board Lars-Peter Clausen
2010-06-02 19:15 ` [RFC][PATCH 26/26] alsa: ASoC: JZ4740: Add qi_lb60 board driver Lars-Peter Clausen
2010-06-02 19:15   ` Lars-Peter Clausen
2010-06-03 17:57   ` Mark Brown
2010-06-03 17:57     ` Mark Brown
  -- strict thread matches above, loose matches on Subject: below --
2022-10-20 16:54 Hi ????????????????????????????????? mike williams
2020-10-30 15:49 Hi; gabrielthomas9010
2018-09-06  9:40 hi! zleachae-8Cmw1+NI3eNeoWH0uzbU5w
2018-09-04 20:53 hi! otre-8Cmw1+NI3eNeoWH0uzbU5w
2018-08-12 18:13 hi! audriafb-8Cmw1+NI3eNeoWH0uzbU5w
2015-11-20 14:52 Hi , Stephane Hamelet
2015-11-20 14:52 ` Stephane Hamelet
2014-10-13  9:39 Hi, ann ben
2013-10-26  4:15 Hi, John Reynolds
2013-10-26  5:04 ` Hi, Ben Greear
2012-12-06 17:18 Hi! Marketing Commucation
2012-12-06 17:18 Hi! Marketing Commucation
2012-05-25 14:52 hi! Klokov Alexey
     [not found] <20120329170349.Horde.RdBMRSoH6vhPdIflPy3mByA@correio.portugalmail.pt>
     [not found] ` <CACeyogdBUoK-34Rxm_fzbw5OV75u8CiBSfzU=z5UUzv_RBvRQw@mail.gmail.com>
2012-03-31  6:04   ` hi, Kevin
2012-03-31  9:20     ` hi, Andreas Ericsson
2012-03-12 12:44 Hi, horia.geanta
2010-07-11  8:22 Hi! Мария Сергеева
2009-10-14 20:36 Hi! Justin Yaple
2009-08-25  7:14 hi, Bill Xie
2009-08-11  8:28 hi, Bill Xie
2008-08-20  8:43 Hi! Eric Anopolsky
2008-08-20 18:25 ` Hi! Chris Mason
2008-08-21 10:47   ` Hi! Miguel Sousa Filipe
2008-08-24  7:02     ` Hi! Steve Long
2008-08-25 21:56       ` Hi! Miguel Sousa Filipe
2008-05-27 22:08 Hi ! Miss. Joysin Plany
2007-07-29 22:30 Hi! Kenya Vasquez
2007-07-12 22:08 Hi! Jaime Stinson
2007-07-09 10:12 Hi! Sandy Rojas
2007-06-03 16:21 Hi! Samantha
2007-04-07 17:02 Hi, ms joy
2007-04-07 17:01 Hi, ms joy
2007-04-07 16:59 Hi, ms joy
2007-04-07 16:59 Hi, ms joy
2006-08-20 17:48 HI! Doug Shultz
2006-08-20 17:48 HI! Doug Shultz
2006-03-11 15:27 HI ! Romero Ryan
2005-06-11 17:00 Hi! Billie Joe
2005-06-11 17:16 ` Hi! Tib
2005-06-11 17:56   ` Hi! Sadus .
2005-06-11 18:21     ` Hi! Tib
2005-06-11 18:22     ` Hi! Tib
2005-06-12 23:48       ` Hi! Ian Laurie
2005-06-13  0:26         ` Hi! Tib
2005-06-13  0:55           ` Hi! Ian Laurie
     [not found]           ` <1118623895l.11527l.1l@server.moose.blogdns.org>
2005-06-13  1:09             ` Hi! Tib
2005-06-05 12:13 Hi!! Alberto Rossi
2005-06-05  8:27 Hi!! Alberto Rossi
2005-05-12  7:29 Hi! venkata ramesh
2004-11-25 13:09 Hi! naroth-qDHaf3XTt0D7Za/I2yyZNw
2003-07-14 18:33 Hi! Ferenc Kiraly
2003-07-14 19:29 ` Hi! Dieter Nützel
2001-06-16 10:37 Hi! Olga Georgieva
2000-03-14 14:19 Hi! Sebastien Articlaux
2000-03-14 21:05 ` Hi! Wolfgang Denk

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.