Search String: Display: Description: Sort:

Results:

References: [ +subject:/^(?:^\s*(re|sv|fwd|fw)[\[\]\d]*[:>-]+\s*)*\[patch\]\s+Convert\s+sockets_in_use\s+to\s+use\s+per_cpu\s+areas\s*$/: 14 ]

Total 14 documents matching your query.

1. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: xxxxxxxxxxxxxx>
Date: Tue, 07 Jan 2003 01:16:13 -0800 (PST)
Patch applied, thanks.
/archives/netdev/2003-01/msg00041.html (7,266 bytes)

2. [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: urag_co@xxxxxxxxxxxxxx>
Date: Mon, 23 Dec 2002 19:08:48 +0530
Here's a simple patch to change sockets_in_use to make use of per-cpu areas. I have couple of questions though... 1. Was this var made per-cpu just to avoid atomic_t or locking or are there real lif
/archives/netdev/2002-12/msg00127.html (9,553 bytes)

3. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: augusta@xxxxxxxxxxxxxx>
Date: Mon, 23 Dec 2002 12:16:32 -0800 (PST)
-static union { - int counter; - char __pad[SMP_CACHE_BYTES]; -} sockets_in_use[NR_CPUS] __cacheline_aligned = {{0}}; +static DEFINE_PER_CPU(int, sockets_in_use); You have to provide an explicit ini
/archives/netdev/2002-12/msg00129.html (8,357 bytes)

4. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: ler" <davem@xxxxxxxxxx>
Date: Mon, 23 Dec 2002 16:00:48 -0800
I wonder if "some platforms with older GCC's" will ever have these issues resolved... --cw
/archives/netdev/2002-12/msg00130.html (8,575 bytes)

5. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: Wedgwood <cw@xxxxxxxx>
Date: Mon, 23 Dec 2002 16:23:51 -0800 (PST)
I wonder if "some platforms with older GCC's" will ever have these issues resolved... I still don't have gcc-3.2.1 working properly on sparc64. I hope to have it working soon, but this does mean tha
/archives/netdev/2002-12/msg00131.html (8,805 bytes)

6. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: meg_trplx@xxxxxxxxxxxx>
Date: Tue, 24 Dec 2002 12:18:52 +0530
Ok, here's the modified patch... Thanks, Kiran diff -ruN -X dontdiff linux-2.5.52/net/socket.c sockets_in_use-2.5.52/net/socket.c -- linux-2.5.52/net/socket.c Mon Dec 16 07:37:53 2002 +++ sockets_in_
/archives/netdev/2002-12/msg00133.html (10,284 bytes)

7. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: alai <kiran@xxxxxxxxxx>
Date: Mon, 23 Dec 2002 22:50:47 -0800 (PST)
From: Ravikiran G Thirumalai <kiran@xxxxxxxxxx> Date: Tue, 24 Dec 2002 12:18:52 +0530 Ok, here's the modified patch... Ok I'll apply this when I get back from vacation in the new year.
/archives/netdev/2002-12/msg00134.html (8,324 bytes)

8. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: "David S. Miller" <davem@xxxxxxxxxx>
Date: Tue, 07 Jan 2003 01:16:13 -0800 (PST)
Patch applied, thanks.
/archives/netdev/2003-01/msg00237.html (7,504 bytes)

9. [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: Ravikiran G Thirumalai <kiran@xxxxxxxxxx>
Date: Mon, 23 Dec 2002 19:08:48 +0530
Hi, Here's a simple patch to change sockets_in_use to make use of per-cpu areas. I have couple of questions though... 1. Was this var made per-cpu just to avoid atomic_t or locking or are there real
/archives/netdev/2002-12/msg00272.html (9,553 bytes)

10. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: "David S. Miller" <davem@xxxxxxxxxx>
Date: Mon, 23 Dec 2002 12:16:32 -0800 (PST)
-static union { - int counter; - char __pad[SMP_CACHE_BYTES]; -} sockets_in_use[NR_CPUS] __cacheline_aligned = {{0}}; +static DEFINE_PER_CPU(int, sockets_in_use); You have to provide an explicit ini
/archives/netdev/2002-12/msg00274.html (8,415 bytes)

11. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: Chris Wedgwood <cw@xxxxxxxx>
Date: Mon, 23 Dec 2002 16:00:48 -0800
I wonder if "some platforms with older GCC's" will ever have these issues resolved... --cw
/archives/netdev/2002-12/msg00275.html (8,682 bytes)

12. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: "David S. Miller" <davem@xxxxxxxxxx>
Date: Mon, 23 Dec 2002 16:23:51 -0800 (PST)
I wonder if "some platforms with older GCC's" will ever have these issues resolved... I still don't have gcc-3.2.1 working properly on sparc64. I hope to have it working soon, but this does mean tha
/archives/netdev/2002-12/msg00276.html (8,933 bytes)

13. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: Ravikiran G Thirumalai <kiran@xxxxxxxxxx>
Date: Tue, 24 Dec 2002 12:18:52 +0530
Ok, here's the modified patch... Thanks, Kiran diff -ruN -X dontdiff linux-2.5.52/net/socket.c sockets_in_use-2.5.52/net/socket.c -- linux-2.5.52/net/socket.c Mon Dec 16 07:37:53 2002 +++ sockets_in_
/archives/netdev/2002-12/msg00278.html (10,432 bytes)

14. Re: [patch] Convert sockets_in_use to use per_cpu areas (score: 1)
Author: "David S. Miller" <davem@xxxxxxxxxx>
Date: Mon, 23 Dec 2002 22:50:47 -0800 (PST)
From: Ravikiran G Thirumalai <kiran@xxxxxxxxxx> Date: Tue, 24 Dec 2002 12:18:52 +0530 Ok, here's the modified patch... Ok I'll apply this when I get back from vacation in the new year.
/archives/netdev/2002-12/msg00279.html (8,450 bytes)


This search system is powered by Namazu