All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rte_reciprocal: make arg to rte_reciprocal_divide_u64 const
@ 2019-03-21 19:59 Stephen Hemminger
  2019-03-22 18:09 ` Maxime Coquelin
  2019-03-27 11:14 ` Thomas Monjalon
  0 siblings, 2 replies; 6+ messages in thread
From: Stephen Hemminger @ 2019-03-21 19:59 UTC (permalink / raw)
  To: dev; +Cc: Stephen Hemminger

The divisor is not modified here. Doesn't really matter for optimizaton
since the function is inline already; but helps with expressing
intent.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 lib/librte_eal/common/include/rte_reciprocal.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_eal/common/include/rte_reciprocal.h b/lib/librte_eal/common/include/rte_reciprocal.h
index 3492c73bafea..63e16fde0aa8 100644
--- a/lib/librte_eal/common/include/rte_reciprocal.h
+++ b/lib/librte_eal/common/include/rte_reciprocal.h
@@ -77,7 +77,7 @@ mullhi_u64(uint64_t x, uint64_t y)
 }
 
 static __rte_always_inline uint64_t
-rte_reciprocal_divide_u64(uint64_t a, struct rte_reciprocal_u64 *R)
+rte_reciprocal_divide_u64(uint64_t a, const struct rte_reciprocal_u64 *R)
 {
 	uint64_t t = mullhi_u64(a, R->m);
 
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-04-03 16:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-21 19:59 [PATCH] rte_reciprocal: make arg to rte_reciprocal_divide_u64 const Stephen Hemminger
2019-03-22 18:09 ` Maxime Coquelin
2019-04-03 16:17   ` Thomas Monjalon
2019-03-27 11:14 ` Thomas Monjalon
2019-04-02 15:26   ` Stephen Hemminger
2019-04-02 16:05     ` Thomas Monjalon

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.