* FW: [PATCH] - Incorrect cpumask definition in net/core/flow.c
@ 2003-11-07 22:37 Jack Steiner
2003-11-08 0:12 ` David S. Miller
0 siblings, 1 reply; 3+ messages in thread
From: Jack Steiner @ 2003-11-07 22:37 UTC (permalink / raw)
To: netdev
(I sent this to akpm earlier - I think I sent it to the wrong list)
This fixes a problem in net/core/flow.c.
The field "cpumap" is defined as a "unsigned long". It
should be a "cpumask_t".
# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1402 -> 1.1403
# net/core/flow.c 1.15 -> 1.16
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/11/07 steiner@attica.americas.sgi.com 1.1403
# Change cpumap definition from "unsigned long" to "cpumask_t".
# --------------------------------------------
#
diff -Nru a/net/core/flow.c b/net/core/flow.c
--- a/net/core/flow.c Fri Nov 7 15:04:08 2003
+++ b/net/core/flow.c Fri Nov 7 15:04:08 2003
@@ -65,7 +65,7 @@
struct flow_flush_info {
atomic_t cpuleft;
- unsigned long cpumap;
+ cpumask_t cpumap;
struct completion completion;
};
static DEFINE_PER_CPU(struct tasklet_struct, flow_flush_tasklets) = { NULL };
@@ -73,7 +73,7 @@
#define flow_flush_tasklet(cpu) (&per_cpu(flow_flush_tasklets, cpu))
static DECLARE_MUTEX(flow_cache_cpu_sem);
-static unsigned long flow_cache_cpu_map;
+static cpumask_t flow_cache_cpu_map;
static unsigned int flow_cache_cpu_count;
static void flow_cache_new_hashrnd(unsigned long arg)
--
Thanks
Jack Steiner (steiner@sgi.com) 651-683-5302
Principal Engineer SGI - Silicon Graphics, Inc.
^ permalink raw reply [flat|nested] 3+ messages in thread* Fw: [PATCH] - Incorrect cpumask definition in net/core/flow.c
@ 2003-11-07 23:43 Andrew Morton
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2003-11-07 23:43 UTC (permalink / raw)
To: David S. Miller; +Cc: netdev, Jack Steiner
One for you please Dave.
Begin forwarded message:
Date: Fri, 7 Nov 2003 15:08:48 -0600
From: Jack Steiner <steiner@sgi.com>
To: akpm@osdl.org, linux-kernel@vger.kernel.org
Cc: Jesse Barnes <jbarnes@sgi.com>
Subject: [PATCH] - Incorrect cpumask definition in net/core/flow.c
This fixes a problem in net/core/flow.c.
The field "cpumap" is defined as a "unsigned long". It
should be a "cpumask_t".
# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1402 -> 1.1403
# net/core/flow.c 1.15 -> 1.16
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/11/07 steiner@attica.americas.sgi.com 1.1403
# Change cpumap definition from "unsigned long" to "cpumask_t".
# --------------------------------------------
#
diff -Nru a/net/core/flow.c b/net/core/flow.c
--- a/net/core/flow.c Fri Nov 7 15:04:08 2003
+++ b/net/core/flow.c Fri Nov 7 15:04:08 2003
@@ -65,7 +65,7 @@
struct flow_flush_info {
atomic_t cpuleft;
- unsigned long cpumap;
+ cpumask_t cpumap;
struct completion completion;
};
static DEFINE_PER_CPU(struct tasklet_struct, flow_flush_tasklets) = { NULL };
@@ -73,7 +73,7 @@
#define flow_flush_tasklet(cpu) (&per_cpu(flow_flush_tasklets, cpu))
static DECLARE_MUTEX(flow_cache_cpu_sem);
-static unsigned long flow_cache_cpu_map;
+static cpumask_t flow_cache_cpu_map;
static unsigned int flow_cache_cpu_count;
static void flow_cache_new_hashrnd(unsigned long arg)
--
Thanks
Jack Steiner (steiner@sgi.com) 651-683-5302
Principal Engineer SGI - Silicon Graphics, Inc.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2003-11-08 0:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-11-07 22:37 FW: [PATCH] - Incorrect cpumask definition in net/core/flow.c Jack Steiner
2003-11-08 0:12 ` David S. Miller
-- strict thread matches above, loose matches on Subject: below --
2003-11-07 23:43 Fw: " Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).