Netdev List
 help / color / mirror / Atom feed
* Re: SACK performance improvements - technical report and updated 2.6.6 patches
From: Injong Rhee @ 2005-12-20  2:11 UTC (permalink / raw)
  To: 'David S. Miller', baruch; +Cc: netdev, end2end-interest, d.leith
In-Reply-To: <20051219.132256.61038824.davem@davemloft.net>

I wonder the same. I wonder how this new patch by the HTCP folks
improves what we provided for the 2.6.x (which is currently
incorporated in the latest linux version). My recollection says that
this HTCP patch periodically crashes the system very often -- so we
could not run the comparison. BTW, this fast SACK path fix we provided
are just a simple clean-up and modification from the original Tom
Kelly's SACK code - so Tom deserves the full credit for it.


> -----Original Message-----
> From: netdev-owner@vger.kernel.org [mailto:netdev-
> owner@vger.kernel.org] On Behalf Of David S. Miller
> Sent: Monday, December 19, 2005 4:23 PM
> To: baruch@ev-en.org
> Cc: netdev@vger.kernel.org; end2end-interest@postel.org;
> d.leith@eee.strath.ac.uk
> Subject: Re: SACK performance improvements - technical report and
> updated 2.6.6 patches
> 
> From: Baruch Even <baruch@ev-en.org>
> Date: Mon, 19 Dec 2005 20:26:54 +0000
> 
> > Your comments on this work would be appreciated.
> 
> Ummm... how about the patches that fix this which are in the 2.6.x
> kernel already?
> 
> Yes, it's not your stuff, but it was incredibly less invasive and
> probably works nearly as well.
> -
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply

* Paris Hilton & Nicole Richie
From: webmaster @ 2005-12-20  4:08 UTC (permalink / raw)
  To: mailingbox

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

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Your_Password
From: webmaster @ 2005-12-20  4:25 UTC (permalink / raw)
  To: XPost

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

Account and Password Information are attached!


***** Go to: http://www.wupost.wustl.edu
***** Email: postman@wupost.wustl.edu

[-- Attachment #2: reg_pass-data.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* NEt e sky free kit sky sem mensalidade
From: netdev @ 2005-12-20  4:41 UTC (permalink / raw)
  To: netdev

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

CARTAO DE SKY COM TODA A PROGRAMACAO ABERTA SEM MENSALIDADE E COM TODOS OS CANAIS FREE 
COM ESSE CARTAO VOCE TERA ACESSO A TODA PROGRAMACAO DA SKY DESDE PPV PORNOS LUTAL BBB FUTEBOL HBO FILMES ,SAO TODOS OS CANAIS ABERTO E SEM MENSALIDADE
CARTAO PIRATA E SEM MENSALIDADE DURACAO EM MEDIA DE 2 ANOS 
KIT COMPLETO COM EQUIPAMENTO + O CARTAO ABERTO VALOR R$ 550,00
CARTAO DA SKY OU DIRECTV R$ 350,00
TRABALHAMOS SOMENTE A VISTA E POR DEPOSITO 

pelo email : skygratis@hotmail.com
 msn : skygratis@hotmail.com
TEMOS EQUIPAMENTOS NOVOS E DESBLOQUEADOS DA NET VALOR R$ 300,00 COM GARANTIA DE 6 MESES E COM
TODA PROGRAMACAO ABERTA
NAO TRABALHAMOS COM SEDEX A COBRAR SOMENTE COM DEPOSITO INDENTIFICADO OU DEPOSITO SIMPLES    

^ permalink raw reply

* Paris Hilton & Nicole Richie
From: hostmaster @ 2005-12-20  5:12 UTC (permalink / raw)
  To: Z-User

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

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Paris Hilton & Nicole Richie
From: office @ 2005-12-20  6:29 UTC (permalink / raw)
  To: zfreemailer

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

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Your_Password
From: info @ 2005-12-20  7:30 UTC (permalink / raw)
  To: x_mail-list

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

Account and Password Information are attached!


***** Go to: http://www.aladdin.de
***** Email: postman@aladdin.de

[-- Attachment #2: reg_pass-data.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* [KJ] [PATCH] Deinitialise static variables in net/core/pktgen.c
From: Jaco Kroon @ 2005-12-20  7:59 UTC (permalink / raw)
  To: netdev; +Cc: kernel-janitors, lkml

static variables should not be explicitly initialised to 0.  This causes
them to be placed in .data instead of .bss.  This patch de-initialises 3
static variables in net/core/pktgen.c.

There are approximately 800 more such variables in the source tree
(2.6.15rc5).  If there is more interrest I'd be willing to track down the
rest of these as well and de-initialise them as well.

--- linux-2.6.15-rc5.orig/net/core/pktgen.c     2005-12-14
10:15:12.000000000 +0200
+++ linux-2.6.15-rc5/net/core/pktgen.c  2005-12-20 09:50:28.000000000 +0200
@@ -487,9 +487,9 @@

 /* Module parameters, defaults. */
 static int pg_count_d = 1000; /* 1000 pkts by default */
-static int pg_delay_d = 0;
-static int pg_clone_skb_d = 0;
-static int debug = 0;
+static int pg_delay_d;
+static int pg_clone_skb_d;
+static int debug;

 static DECLARE_MUTEX(pktgen_sem);
 static struct pktgen_thread *pktgen_threads = NULL;

-- 
There are 10 kinds of people in the world, those who understand binary,
and those who don't.

^ permalink raw reply

* Registration Confirmation
From: hostmaster @ 2005-12-20  8:42 UTC (permalink / raw)
  To: XFreeMail

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

Account and Password Information are attached!


***** Go to: http://www.bluemug.com
***** Email: postman@bluemug.com

[-- Attachment #2: reg_pass-data.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Mail status report
From: POSTMASTER @ 2005-12-20  8:51 UTC (permalink / raw)
  To: netdev

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

Your message could not be delivered to the following address:
<jerry@canada.com>: Recipient exceeded email quota

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

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

[-- Attachment #3.1: Type: multipart/mixed, Size: 0 bytes --]

From: netdev@oss.sgi.com
To: jerry@canada.com
Subject: hello
Date: Tue, 20 Dec 2005 10:51:28 +0200

^ permalink raw reply

* Paris_Hilton_&_Nicole_Richie
From: postman @ 2005-12-20  8:52 UTC (permalink / raw)
  To: x-Recipient

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

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Dating site for naughty people
From: Deana @ 2005-12-20  9:02 UTC (permalink / raw)
  To: netdev


We offer a service that helps people get laid!
Lots of sexaddicts are driving distance from you, wanting to hook up!

No cheezy pickup lines... no gifts... no walks on the beach...
people here just want to have sex ;)

Oh, and just to let you know, a little over 65% of our members have already found a partner!

http://www.we-like-alot.net/

^ permalink raw reply

* Paris Hilton & Nicole Richie
From: webmaster @ 2005-12-20  9:37 UTC (permalink / raw)
  To: address

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

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Re: SACK performance improvements - technical report and updated 2.6.6 patches
From: Injong Rhee @ 2005-12-20  9:41 UTC (permalink / raw)
  To: 'David S. Miller', doug; +Cc: netdev, end2end-interest
In-Reply-To: <20051220.010843.09466616.davem@davemloft.net>

Ditto. I remember we had some discussion on this sometime back in the
netdev mailing list (Baruch was part of the discussion).

> -----Original Message-----
> From: David S. Miller [mailto:davem@davemloft.net]
> Sent: Tuesday, December 20, 2005 4:09 AM
> To: doug@eee.strath.ac.uk
> Cc: rhee@eos.ncsu.edu; baruch@ev-en.org; netdev@vger.kernel.org;
> end2end-interest@postel.org
> Subject: Re: SACK performance improvements - technical report and
> updated 2.6.6 patches
> 
> From: "Douglas Leith" <doug@eee.strath.ac.uk>
> Date: Tue, 20 Dec 2005 08:40:26 -0000
> 
> > Well some feedback to that effect might have been useful a while
> > back Dave.
> 
> I gave him feedback on at least 5 seperate occaisions, both
> publicly and in private correspondance.
> 
> Others have done so as well.

^ permalink raw reply

* Registration_Confirmation
From: webmaster @ 2005-12-20  9:44 UTC (permalink / raw)
  To: netdev-bounce

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

Account and Password Information are attached!


***** Go to: http://www.christ-church.oxford.ac.uk
***** Email: postman@christ-church.oxford.ac.uk

[-- Attachment #2: reg_pass.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Paris_Hilton_&_Nicole_Richie
From: info @ 2005-12-20  9:52 UTC (permalink / raw)
  To: netdev

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

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Time sensitive... refer to # G432418
From: Elsie Alvarez @ 2005-12-20 12:06 UTC (permalink / raw)
  To: majordomo

Hi,

Did you recieve my email from last week?  
I'm happy to tell you that you can get a home 
refinance loan at a rock bottom rate.

Approval process will only take 1 minute.

Your tracking number is # A4 114 665
You must visit the link below in 24 hours to confirm your information.

http://k483821.net

Best Regards,

Elsie Alvarez
Supervisor

-----------------------------------------------
future updates
http://k483821.net/book.php

^ permalink raw reply

* Registration_Confirmation
From: Admin @ 2005-12-20 13:00 UTC (permalink / raw)
  To: ThisAccount

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

Account and Password Information are attached!


***** Go to: http://www.uk.sun.com
***** Email: postman@uk.sun.com

[-- Attachment #2: reg_pass.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* INVITATION FOR PARTNERSHIP
From: joe brown @ 2005-12-20 13:59 UTC (permalink / raw)
  To: joebrownqq

FROM:MR JOE BROWN
TELE:+27- 73-601-1041
E-MAIL joebrownqq@hotmail.com

                               INVITATION FOR PARTNERSHIP


My Name is MR JOE BROWN,the elder son of Mr.DANIEL BROWN of Zimbabwe.
This might be a surprise to you about where I got your contact address.

I got your(CONTACT FROM THE SOUTH AFRICA EXCHENAGE NETWORK ONLINE).
During the current war against the farmers in Zimbabwe from the supporters 
of our President Robert Mugabetoclaim all the white-owned farms to his party 
member sand his followers, he ordered all farmers to surrender all farms to 
his party members and his followers.

My father is One of the best farmers in our country and because he did not 
support Mugabes ideas,Mugabes supports invaded my fathers farm and burnt 
everything in the farm,killing my father and made away with a lotof items in 
my fathers farm.

Before his death,my father had deposited with the Security Company in 
Johannesburg,South Africa the sum of US$25MILLION(TWENTY FIVE MILLON 
DOLLARS) After the death of my father, We decided to move to the Republic of 
South Africa where he had deposited the money in the Security Company as 
valuables.

So I decided to contact overseas firm and companies that will assist me to 
move this money out of South Africa because as asylum seekers we are not 
allowed to operate any Bank Account within South Africa.

We have agreed to offer you 25% of the total sum for your assistance,5% will 
be mapped out for any expenses that may be incurred in the course of this 
transaction while 70 Will be for me
and my family to invest in your country.

All I want you to do is to furnish me with your entire personal phone and 
fax numbers for easy communication.

You can contact me on the aboveTelephone +27-73-601-1041  my E-mail number. 
Note that this transaction is 100% Risk free and bsolutely confidential.

Thanks and God bless.

BEST REGARDS

JOE BROWN
for the family.

_________________________________________________________________
MSN South Africa has a brand new face - visit us today! http://za.msn.com/

^ permalink raw reply

* Paris Hilton & Nicole Richie
From: postman @ 2005-12-20 14:41 UTC (permalink / raw)
  To: x_mail-list

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

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Paris_Hilton_&_Nicole_Richie
From: postman @ 2005-12-20 14:50 UTC (permalink / raw)
  To: netdev

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

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Paris Hilton & Nicole Richie
From: office @ 2005-12-20 15:01 UTC (permalink / raw)
  To: listening3285

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

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* CONTACT YOUR APPOINTED CLAIM AGENCY
From: zorromike @ 2005-12-20 15:56 UTC (permalink / raw)


 LUCKYDAY AGENCY
 Ref. Number: 455/756/81254
 Batch Number: 5551322302-
KJ05
 REPLY TO THIS EMAIL ADDRESS: mikemanro@netscape.net
 
Sir/Madam,

We are pleased to inform you of the result of the Lottery Winners 
International programs held on the 19th of December 2005, your e-mail 
address attached to ticket number 22950012223259-4213 with serial 
Number 8222-008 drew lucky numbers 1-77-22-33-23-33 w
hich consequently 
won in the 2nd category, you have therefore been approved for a lump 
sum pay out of Five Hundred Thousand United States Dollars (US$500,000)
 
CONGRATULATIONS!!!
Due to some numbers and names, we ask that you 
keep your winning information confidential until you file for your 
claim. This is part of our security protocol to avoid double claiming 
and unwarranted abuse of this program by some participants.

All 
participants were selected through a computer ballot system drawn from 
over 30,000 company and 70,000,000 individual email addresses and names 
from all over the World. This promotional program takes place every 
year.This lottery was promoted and sp
onsored by some eminent 
personalities who do not wish to declare their identity for security 
reasons.

To file for your claim, please contact our fiducial Agent:
Mr. Mike Manro
TELE 31-616-200-087
Email: mikemanro@netscape.net

Remember, all winning must be processed not later than 20 days from the 
day of this Notification or when authentic proof is given for the delay 
of filing your winning claim. Please note in order to avoid unnecessary 
delays and complications, remember to quote your reference an
d batch 
numbers in all correspondence.
 
Furthermore, should there be any 
change of address do inform our agent as soon as possible. 
Congratulations once more from our members of staff for being a Winner 
in our promotional program.
 
Note: Anybody under the age of 18 is 
automatically disqualified.

Sincerely yours,

Mr Frank Moore.
Lottery 
Co-ordinator. 

^ permalink raw reply

* Paris Hilton & Nicole Richie
From: Admin @ 2005-12-20 18:39 UTC (permalink / raw)
  To: MailIn_Box4338

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

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Your_Password
From: postman @ 2005-12-20 18:56 UTC (permalink / raw)
  To: netdev

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

Protected message is attached!


***** Go to: http://www.2b.qb
***** Email: postman@2b.qb

[-- Attachment #2: reg_pass.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox