From: Vedang Patel <vedang.patel@intel.com>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [PATCH net-next v4 4/7] taprio: Remove inline directive
Date: Wed, 19 Jun 2019 10:40:13 -0700 [thread overview]
Message-ID: <1560966016-28254-5-git-send-email-vedang.patel@intel.com> (raw)
In-Reply-To: <1560966016-28254-1-git-send-email-vedang.patel@intel.com>
Remove inline directive from length_to_duration(). We will let the compiler
make the decisions.
Signed-off-by: Vedang Patel <vedang.patel@intel.com>
---
net/sched/sch_taprio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/sched/sch_taprio.c b/net/sched/sch_taprio.c
index a41d7d4434ee..6ef0cc03fdb9 100644
--- a/net/sched/sch_taprio.c
+++ b/net/sched/sch_taprio.c
@@ -168,7 +168,7 @@ static struct sk_buff *taprio_peek(struct Qdisc *sch)
return NULL;
}
-static inline int length_to_duration(struct taprio_sched *q, int len)
+static int length_to_duration(struct taprio_sched *q, int len)
{
return div_u64(len * atomic64_read(&q->picos_per_byte), 1000);
}
--
2.7.3
WARNING: multiple messages have this Message-ID (diff)
From: Vedang Patel <vedang.patel@intel.com>
To: netdev@vger.kernel.org
Cc: jeffrey.t.kirsher@intel.com, davem@davemloft.net,
jhs@mojatatu.com, xiyou.wangcong@gmail.com, jiri@resnulli.us,
intel-wired-lan@lists.osuosl.org, vinicius.gomes@intel.com,
l@dorileo.org, jakub.kicinski@netronome.com, m-karicheri2@ti.com,
sergei.shtylyov@cogentembedded.com,
Vedang Patel <vedang.patel@intel.com>
Subject: [PATCH net-next v4 4/7] taprio: Remove inline directive
Date: Wed, 19 Jun 2019 10:40:13 -0700 [thread overview]
Message-ID: <1560966016-28254-5-git-send-email-vedang.patel@intel.com> (raw)
In-Reply-To: <1560966016-28254-1-git-send-email-vedang.patel@intel.com>
Remove inline directive from length_to_duration(). We will let the compiler
make the decisions.
Signed-off-by: Vedang Patel <vedang.patel@intel.com>
---
net/sched/sch_taprio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/sched/sch_taprio.c b/net/sched/sch_taprio.c
index a41d7d4434ee..6ef0cc03fdb9 100644
--- a/net/sched/sch_taprio.c
+++ b/net/sched/sch_taprio.c
@@ -168,7 +168,7 @@ static struct sk_buff *taprio_peek(struct Qdisc *sch)
return NULL;
}
-static inline int length_to_duration(struct taprio_sched *q, int len)
+static int length_to_duration(struct taprio_sched *q, int len)
{
return div_u64(len * atomic64_read(&q->picos_per_byte), 1000);
}
--
2.7.3
next prev parent reply other threads:[~2019-06-19 17:40 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-19 17:40 [Intel-wired-lan] [PATCH net-next v4 0/7] net/sched: Add txtime-assist support for taprio Vedang Patel
2019-06-19 17:40 ` Vedang Patel
2019-06-19 17:40 ` [Intel-wired-lan] [PATCH net-next v4 1/7] igb: clear out tstamp after sending the packet Vedang Patel
2019-06-19 17:40 ` Vedang Patel
2019-06-20 10:47 ` [Intel-wired-lan] " Eric Dumazet
2019-06-20 10:47 ` Eric Dumazet
2019-06-20 16:49 ` [Intel-wired-lan] " Patel, Vedang
2019-06-20 16:49 ` Patel, Vedang
2019-06-20 17:07 ` [Intel-wired-lan] " Eric Dumazet
2019-06-20 17:07 ` Eric Dumazet
2019-06-20 20:32 ` [Intel-wired-lan] " Patel, Vedang
2019-06-20 20:32 ` Patel, Vedang
2019-06-20 21:56 ` [Intel-wired-lan] " Eric Dumazet
2019-06-20 21:56 ` Eric Dumazet
2019-06-19 17:40 ` [Intel-wired-lan] [PATCH net-next v4 2/7] etf: Add skip_sock_check Vedang Patel
2019-06-19 17:40 ` Vedang Patel
2019-06-20 8:16 ` [Intel-wired-lan] " Sergei Shtylyov
2019-06-20 8:16 ` Sergei Shtylyov
2019-06-20 21:13 ` [Intel-wired-lan] " Patel, Vedang
2019-06-20 21:13 ` Patel, Vedang
2019-06-19 17:40 ` [Intel-wired-lan] [PATCH net-next v4 3/7] taprio: calculate cycle_time when schedule is installed Vedang Patel
2019-06-19 17:40 ` Vedang Patel
2019-06-19 17:40 ` Vedang Patel [this message]
2019-06-19 17:40 ` [PATCH net-next v4 4/7] taprio: Remove inline directive Vedang Patel
2019-06-19 17:40 ` [Intel-wired-lan] [PATCH net-next v4 5/7] taprio: Add support for txtime-assist mode Vedang Patel
2019-06-19 17:40 ` Vedang Patel
2019-06-19 17:40 ` [Intel-wired-lan] [PATCH net-next v4 6/7] taprio: make clock reference conversions easier Vedang Patel
2019-06-19 17:40 ` Vedang Patel
2019-06-19 17:40 ` [Intel-wired-lan] [PATCH net-next v4 7/7] taprio: Adjust timestamps for TCP packets Vedang Patel
2019-06-19 17:40 ` Vedang Patel
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=1560966016-28254-5-git-send-email-vedang.patel@intel.com \
--to=vedang.patel@intel.com \
--cc=intel-wired-lan@osuosl.org \
/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 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.