From: Joe Perches <joe@perches.com>
To: Tom Herbert <therbert@google.com>
Cc: David Miller <davem@davemloft.net>,
Eric Dumazet <eric.dumazet@gmail.com>,
netdev <netdev@vger.kernel.org>
Subject: [RFC PATCH] dynamic_queue_limit.h: Make the struct ___cacheline_aligned_on_smp
Date: Fri, 07 Dec 2012 06:58:54 -0800 [thread overview]
Message-ID: <1354892334.29937.14.camel@joe-AO722> (raw)
Given that the struct will always have limit at the start of
a cacheline, why not make struct ___cacheline_aligned_on_smp
and make limit the first member?
It could make other structs that use struct dql a bit more
predictable or efficient to pack.
(netdev_queue is size reduced from 256 to 192 on x86-32)
---
include/linux/dynamic_queue_limits.h | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/include/linux/dynamic_queue_limits.h b/include/linux/dynamic_queue_limits.h
index 5621547..2d20b22 100644
--- a/include/linux/dynamic_queue_limits.h
+++ b/include/linux/dynamic_queue_limits.h
@@ -38,6 +38,8 @@
#ifdef __KERNEL__
struct dql {
+ unsigned int limit; /* Must be first field - Current limit */
+
/* Fields accessed in enqueue path (dql_queued) */
unsigned int num_queued; /* Total ever queued */
unsigned int adj_limit; /* limit + num_completed */
@@ -45,7 +47,6 @@ struct dql {
/* Fields accessed only by completion path (dql_completed) */
- unsigned int limit ____cacheline_aligned_in_smp; /* Current limit */
unsigned int num_completed; /* Total ever completed */
unsigned int prev_ovlimit; /* Previous over limit */
@@ -59,7 +60,7 @@ struct dql {
unsigned int max_limit; /* Max limit */
unsigned int min_limit; /* Minimum limit */
unsigned int slack_hold_time; /* Time to measure slack */
-};
+} ____cacheline_aligned_in_smp;
/* Set some static maximums */
#define DQL_MAX_OBJECT (UINT_MAX / 16)
next reply other threads:[~2012-12-07 14:58 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-07 14:58 Joe Perches [this message]
2012-12-07 15:55 ` [RFC PATCH] dynamic_queue_limit.h: Make the struct ___cacheline_aligned_on_smp Eric Dumazet
2012-12-07 16:05 ` Joe Perches
2012-12-07 16:19 ` Eric Dumazet
2012-12-07 16:29 ` Joe Perches
2012-12-07 16:42 ` Ben Hutchings
2012-12-07 16:54 ` Eric Dumazet
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1354892334.29937.14.camel@joe-AO722 \
--to=joe@perches.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=therbert@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).