!1205 [sync] PR-1165: cleancode: refactor lwipgz_hlist.h
From: @openeuler-sync-bot Reviewed-by: @jiangheng12 Signed-off-by: @jiangheng12
This commit is contained in:
commit
7ccedfd266
397
0152-cleancode-refactor-lwipgz_hlist.h.patch
Normal file
397
0152-cleancode-refactor-lwipgz_hlist.h.patch
Normal file
@ -0,0 +1,397 @@
|
||||
From fcbc07a4befb1a49b521b204a58265fbfb250130 Mon Sep 17 00:00:00 2001
|
||||
From: Lemmy Huang <huangliming5@huawei.com>
|
||||
Date: Thu, 11 Jul 2024 14:04:16 +0800
|
||||
Subject: [PATCH] cleancode: refactor lwipgz_hlist.h
|
||||
|
||||
Changed:
|
||||
INIT_HLIST_HEAD -> hlist_init_head
|
||||
INIT_HLIST_NODE -> hlist_init_node
|
||||
hlist_empty -> hlist_head_empty
|
||||
hlist_unhashed -> hlist_node_null
|
||||
hlist_del_init -> hlist_del_node
|
||||
Not changed:
|
||||
hlist_add_head
|
||||
hlist_add_before
|
||||
hlist_add_after
|
||||
Deprecated:
|
||||
INIT_HLIST_CTRL
|
||||
hlist_ctl_del
|
||||
hlist_pop_tail
|
||||
hlist_pop_head
|
||||
hlist_ctl_add_tail
|
||||
hlist_ctl_add_head
|
||||
hlist_ctl_add_after
|
||||
hlist_ctl_add_before
|
||||
|
||||
Signed-off-by: Lemmy Huang <huangliming5@huawei.com>
|
||||
---
|
||||
src/core/tcp.c | 2 +-
|
||||
src/core/tcp_in.c | 2 +-
|
||||
src/include/lwip/priv/tcp_priv.h | 2 +-
|
||||
src/include/lwip/tcp.h | 3 -
|
||||
src/include/lwipgz_hlist.h | 230 ++++++++++++++-----------------
|
||||
5 files changed, 106 insertions(+), 133 deletions(-)
|
||||
|
||||
diff --git a/src/core/tcp.c b/src/core/tcp.c
|
||||
index 2f29f1f..a340e1a 100644
|
||||
--- a/src/core/tcp.c
|
||||
+++ b/src/core/tcp.c
|
||||
@@ -193,7 +193,7 @@ PER_THREAD struct tcp_pcb ** tcp_pcb_lists[NUM_TCP_PCB_LISTS] = {NULL, NULL, NUL
|
||||
for (_i = 0; _i < TCP_HTABLE_SIZE; ++_i) { \
|
||||
if (sys_mutex_new(&(ht_ptr)->array[_i].mutex) != ERR_OK) \
|
||||
LWIP_ASSERT("failed to create ht->array[].mutex", 0);\
|
||||
- INIT_HLIST_HEAD(&(ht_ptr)->array[_i].chain); \
|
||||
+ hlist_init_head(&(ht_ptr)->array[_i].chain); \
|
||||
}\
|
||||
} while (0)
|
||||
|
||||
diff --git a/src/core/tcp_in.c b/src/core/tcp_in.c
|
||||
index 1e9b44f..66c0cdb 100644
|
||||
--- a/src/core/tcp_in.c
|
||||
+++ b/src/core/tcp_in.c
|
||||
@@ -316,7 +316,7 @@ tcp_input(struct pbuf *p, struct netif *inp)
|
||||
ip_current_src_addr(), tcphdr->src) &
|
||||
(tcp_active_htable->size - 1);
|
||||
head = &tcp_active_htable->array[idx].chain;
|
||||
- tcppcb_hlist_for_each(pcb, node, head) {
|
||||
+ hlist_for_each_entry(pcb, node, head, tcp_node) {
|
||||
#else
|
||||
for (pcb = tcp_active_pcbs; pcb != NULL; pcb = pcb->next) {
|
||||
#endif
|
||||
diff --git a/src/include/lwip/priv/tcp_priv.h b/src/include/lwip/priv/tcp_priv.h
|
||||
index 3e91442..3ed8200 100644
|
||||
--- a/src/include/lwip/priv/tcp_priv.h
|
||||
+++ b/src/include/lwip/priv/tcp_priv.h
|
||||
@@ -495,7 +495,7 @@ static inline void vdev_unreg_done(const struct tcp_pcb *pcb)
|
||||
|
||||
#define TCP_RMV_HASH(pcbs, npcb) \
|
||||
do { \
|
||||
- hlist_del_init(&(npcb)->tcp_node); \
|
||||
+ hlist_del_node(&(npcb)->tcp_node); \
|
||||
} while (0)
|
||||
#endif /* GAZELLE_TCP_PCB_HASH */
|
||||
|
||||
diff --git a/src/include/lwip/tcp.h b/src/include/lwip/tcp.h
|
||||
index 1e77b3b..bfcf605 100644
|
||||
--- a/src/include/lwip/tcp.h
|
||||
+++ b/src/include/lwip/tcp.h
|
||||
@@ -496,9 +496,6 @@ static inline unsigned int jhash_3words6(unsigned int *a, unsigned int *b, unsig
|
||||
jhash_3words(ip_2_ip4(laddr)->addr, ip_2_ip4(faddr)->addr, lport|(fport<<16))
|
||||
#endif
|
||||
|
||||
-#define tcppcb_hlist_for_each(tcppcb, node, list) \
|
||||
- hlist_for_each_entry(tcppcb, node, list, tcp_node)
|
||||
-
|
||||
#endif /* GAZELLE_TCP_PCB_HASH */
|
||||
|
||||
#if LWIP_EVENT_API
|
||||
diff --git a/src/include/lwipgz_hlist.h b/src/include/lwipgz_hlist.h
|
||||
index 459ab51..714a43e 100644
|
||||
--- a/src/include/lwipgz_hlist.h
|
||||
+++ b/src/include/lwipgz_hlist.h
|
||||
@@ -35,199 +35,175 @@
|
||||
|
||||
#include "lwipgz_list.h"
|
||||
|
||||
-//#if GAZELLE_TCP_PCB_HASH
|
||||
+#define HLIST_QUICKLY_FIND 0
|
||||
+
|
||||
struct hlist_node {
|
||||
/**
|
||||
* @pprev: point the previous node's next pointer
|
||||
*/
|
||||
struct hlist_node *next;
|
||||
struct hlist_node **pprev;
|
||||
+
|
||||
+#if HLIST_QUICKLY_FIND
|
||||
+ /* quickly find the hlist_head */
|
||||
+ struct hlist_head *head;
|
||||
+#endif /* HLIST_QUICKLY_FIND */
|
||||
};
|
||||
|
||||
struct hlist_head {
|
||||
struct hlist_node *first;
|
||||
+#if HLIST_QUICKLY_FIND
|
||||
+ struct hlist_node *tail;
|
||||
+#endif /* HLIST_QUICKLY_FIND */
|
||||
};
|
||||
|
||||
-struct hlist_tail {
|
||||
- struct hlist_node *end;
|
||||
-};
|
||||
-
|
||||
-struct hlist_ctl {
|
||||
- struct hlist_head head;
|
||||
- struct hlist_tail tail;
|
||||
-};
|
||||
-
|
||||
-#define INIT_HLIST_CTRL(ptr) {(ptr)->head.first = NULL; (ptr)->tail.end = NULL;}
|
||||
-#define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL)
|
||||
-#define INIT_HLIST_NODE(ptr) {(ptr)->next = NULL; (ptr)->pprev = NULL;}
|
||||
+/**
|
||||
+ * hlist_entry - iterate over list of given type
|
||||
+ * @ptr: the &hlist_node within the struct.
|
||||
+ * @type: the struct type.
|
||||
+ * @member: the name of the hlist_node within the struct.
|
||||
+ */
|
||||
#define hlist_entry(ptr, type, member) \
|
||||
container_of(ptr, type, member)
|
||||
|
||||
/**
|
||||
- * hlist_for_each_entry - iterate over list of given type
|
||||
- * @tpos: the type * to use as a loop cursor.
|
||||
+ * hlist_for_each_entry - iterate over list of given type
|
||||
+ * @tpos: the type * to use as a loop cursor.
|
||||
* @pos: the &struct hlist_node to use as a loop cursor.
|
||||
- * @head: the head for your list.
|
||||
- * @member: the name of the hlist_node within the struct.
|
||||
+ * @head: the head for your list.
|
||||
+ * @member: the name of the hlist_node within the struct.
|
||||
*/
|
||||
#define hlist_for_each_entry(tpos, pos, head, member) \
|
||||
for (pos = (head)->first; \
|
||||
pos && ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1; }); \
|
||||
pos = (pos)->next)
|
||||
|
||||
-/**
|
||||
- * next must be != NULL
|
||||
- * add n node before next node
|
||||
- *
|
||||
- * @n: new node
|
||||
- * @next: node in the hlist
|
||||
- */
|
||||
-static inline void hlist_add_before(struct hlist_node *n, struct hlist_node *next)
|
||||
+static inline void hlist_init_head(struct hlist_head *h)
|
||||
{
|
||||
- n->pprev = next->pprev;
|
||||
- n->next = next;
|
||||
- next->pprev = &n->next;
|
||||
- *(n->pprev) = n;
|
||||
+ h->first = NULL;
|
||||
+#if HLIST_QUICKLY_FIND
|
||||
+ h->tail = NULL;
|
||||
+#endif /* HLIST_QUICKLY_FIND */
|
||||
}
|
||||
|
||||
-static inline int hlist_empty(const struct hlist_head *h)
|
||||
+static inline void hlist_init_node(struct hlist_node *n)
|
||||
{
|
||||
- return !h->first;
|
||||
+ n->next = NULL;
|
||||
+ n->pprev = NULL;
|
||||
+#if HLIST_QUICKLY_FIND
|
||||
+ n->head = NULL;
|
||||
+#endif /* HLIST_QUICKLY_FIND */
|
||||
}
|
||||
|
||||
-static inline int hlist_unhashed(const struct hlist_node *h)
|
||||
+static inline int hlist_head_empty(const struct hlist_head *h)
|
||||
{
|
||||
- return !h->pprev;
|
||||
+ return h->first == NULL;
|
||||
}
|
||||
|
||||
-static inline void hlist_del_init(struct hlist_node *n)
|
||||
+static inline int hlist_node_null(const struct hlist_node *n)
|
||||
{
|
||||
- struct hlist_node *next = n->next;
|
||||
- struct hlist_node **pprev = n->pprev;
|
||||
-
|
||||
- if (pprev == NULL) {
|
||||
- return;
|
||||
- }
|
||||
-
|
||||
- *pprev = next;
|
||||
- if (next != NULL) {
|
||||
- next->pprev = pprev;
|
||||
- }
|
||||
-
|
||||
- n->next = NULL;
|
||||
- n->pprev = NULL;
|
||||
+ return n->pprev == NULL;
|
||||
}
|
||||
|
||||
-static inline void hlist_ctl_del(struct hlist_ctl *ctl, struct hlist_node *n)
|
||||
+static inline void hlist_del_node(struct hlist_node *n)
|
||||
{
|
||||
- if (ctl->head.first == ctl->tail.end) {
|
||||
- ctl->head.first = NULL;
|
||||
- ctl->tail.end = NULL;
|
||||
+ if (hlist_node_null(n)) {
|
||||
return;
|
||||
}
|
||||
|
||||
- if (ctl->tail.end == n) {
|
||||
- ctl->tail.end = (struct hlist_node *)n->pprev;
|
||||
- }
|
||||
-
|
||||
- hlist_del_init(n);
|
||||
-}
|
||||
+ struct hlist_node *next = n->next;
|
||||
+ struct hlist_node **pprev = n->pprev;
|
||||
|
||||
-static inline struct hlist_node *hlist_pop_tail(struct hlist_ctl *ctl)
|
||||
-{
|
||||
- if (hlist_empty(&ctl->head)) {
|
||||
- return NULL;
|
||||
+#if HLIST_QUICKLY_FIND
|
||||
+ if (n->head->tail == n) {
|
||||
+ if (n->head->first == n) {
|
||||
+ n->head->tail = NULL;
|
||||
+ } else {
|
||||
+ n->head->tail = hlist_entry(pprev, struct hlist_node, next);
|
||||
+ }
|
||||
}
|
||||
+#endif /* HLIST_QUICKLY_FIND */
|
||||
|
||||
- if (ctl->head.first == ctl->tail.end) {
|
||||
- struct hlist_node *ret = ctl->tail.end;
|
||||
- ctl->tail.end = NULL;
|
||||
- ctl->head.first = NULL;
|
||||
- return ret;
|
||||
+ *pprev = next;
|
||||
+ if (next != NULL) {
|
||||
+ next->pprev = pprev;
|
||||
}
|
||||
|
||||
- struct hlist_node *temp = ctl->tail.end;
|
||||
-
|
||||
- struct hlist_node **ptailPrev = ctl->tail.end->pprev;
|
||||
- *ptailPrev = NULL;
|
||||
-
|
||||
- ctl->tail.end = (struct hlist_node *)ptailPrev;
|
||||
- temp->pprev = NULL;
|
||||
- return temp;
|
||||
-}
|
||||
-
|
||||
-static inline void hlist_add_after(struct hlist_node *n, struct hlist_node *next)
|
||||
-{
|
||||
- next->next = n->next;
|
||||
- n->next = next;
|
||||
- next->pprev = &n->next;
|
||||
- if (next->next) {
|
||||
- next->next->pprev = &next->next;
|
||||
- }
|
||||
+ hlist_init_node(n);
|
||||
}
|
||||
|
||||
-static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h)
|
||||
+/**
|
||||
+ * hlist_add_head - add node at the beginning of the hlist
|
||||
+ * @n: new node
|
||||
+ * @head: hlist head to add it after
|
||||
+ */
|
||||
+static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *head)
|
||||
{
|
||||
- struct hlist_node *first = h->first;
|
||||
+ struct hlist_node *first = head->first;
|
||||
|
||||
n->next = first;
|
||||
if (first != NULL) {
|
||||
first->pprev = &n->next;
|
||||
}
|
||||
|
||||
- h->first = n;
|
||||
- n->pprev = &h->first;
|
||||
-}
|
||||
-
|
||||
-static inline struct hlist_node *hlist_pop_head(struct hlist_ctl *ctl)
|
||||
-{
|
||||
- if (hlist_empty(&ctl->head)) {
|
||||
- return NULL;
|
||||
- }
|
||||
+ head->first = n;
|
||||
+ n->pprev = &head->first;
|
||||
|
||||
- struct hlist_node *temp = ctl->head.first;
|
||||
- hlist_ctl_del(ctl, temp);
|
||||
- return temp;
|
||||
+#if HLIST_QUICKLY_FIND
|
||||
+ n->head = head;
|
||||
+ if (head->tail == NULL)
|
||||
+ head->tail = n;
|
||||
+#endif /* HLIST_QUICKLY_FIND */
|
||||
}
|
||||
|
||||
-static inline void hlist_ctl_add_tail(struct hlist_ctl *ctl, struct hlist_node *node)
|
||||
+/**
|
||||
+ * hlist_add_before - add node before next node
|
||||
+ * @n: new node
|
||||
+ * @next: node in the hlist
|
||||
+ */
|
||||
+static inline void hlist_add_before(struct hlist_node *n, struct hlist_node *next)
|
||||
{
|
||||
- if (hlist_empty(&ctl->head)) {
|
||||
- hlist_add_head(node, &ctl->head);
|
||||
- ctl->tail.end = ctl->head.first;
|
||||
- return;
|
||||
- }
|
||||
-
|
||||
- ctl->tail.end->next = node;
|
||||
+ n->pprev = next->pprev;
|
||||
+ n->next = next;
|
||||
+ next->pprev = &n->next;
|
||||
+ *(n->pprev) = n;
|
||||
|
||||
- node->pprev = &(ctl->tail.end->next);
|
||||
- node->next = NULL;
|
||||
- ctl->tail.end = node;
|
||||
+#if HLIST_QUICKLY_FIND
|
||||
+ n->head = next->head;
|
||||
+#endif /* HLIST_QUICKLY_FIND */
|
||||
}
|
||||
|
||||
-static inline void hlist_ctl_add_head(struct hlist_node *node, struct hlist_ctl *ctl)
|
||||
+/**
|
||||
+ * hlist_add_after - add node after prev node
|
||||
+ * @n: new node
|
||||
+ * @prev: node in the hlist
|
||||
+ */
|
||||
+static inline void hlist_add_after(struct hlist_node *n, struct hlist_node *prev)
|
||||
{
|
||||
- hlist_add_head(node, &ctl->head);
|
||||
- if (ctl->tail.end == NULL) {
|
||||
- ctl->tail.end = ctl->head.first;
|
||||
+ n->next = prev->next;
|
||||
+ prev->next = n;
|
||||
+ n->pprev = &prev->next;
|
||||
+ if (n->next != NULL) {
|
||||
+ n->next->pprev = &n->next;
|
||||
}
|
||||
-}
|
||||
|
||||
-static inline void hlist_ctl_add_before(struct hlist_node *n, struct hlist_node *next, struct hlist_ctl *ctl)
|
||||
-{
|
||||
- hlist_add_before(n, next);
|
||||
- if (next == ctl->head.first) {
|
||||
- ctl->head.first = n;
|
||||
- }
|
||||
+#if HLIST_QUICKLY_FIND
|
||||
+ n->head = prev->head;
|
||||
+ if (prev->head->tail == prev)
|
||||
+ prev->head->tail = n;
|
||||
+#endif /* HLIST_QUICKLY_FIND */
|
||||
}
|
||||
|
||||
-static inline void hlist_ctl_add_after(struct hlist_node *n, struct hlist_node *next, struct hlist_ctl *ctl)
|
||||
+#if HLIST_QUICKLY_FIND
|
||||
+/**
|
||||
+ * hlist_add_tail - add node at the tail of the hlist
|
||||
+ * @n: new node
|
||||
+ * @head: hlist head to add it tail
|
||||
+ */
|
||||
+static inline void hlist_add_tail(struct hlist_node *n, struct hlist_head *head)
|
||||
{
|
||||
- hlist_add_after(n, next);
|
||||
- if (n == ctl->tail.end) {
|
||||
- ctl->tail.end = next;
|
||||
- }
|
||||
+ hlist_add_after(n, head->tail);
|
||||
}
|
||||
-//#endif /* GAZELLE_TCP_PCB_HASH */
|
||||
+#endif /* HLIST_QUICKLY_FIND */
|
||||
|
||||
#endif /* __LWIPGZ_HLIST_H__ */
|
||||
--
|
||||
2.33.0
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
Summary: lwip is a small independent implementation of the TCP/IP protocol suite
|
||||
Name: lwip
|
||||
Version: 2.2.0
|
||||
Release: 43
|
||||
Release: 44
|
||||
License: BSD
|
||||
URL: http://savannah.nongnu.org/projects/lwip/
|
||||
Source0: http://download.savannah.nongnu.org/releases/lwip/%{name}-%{version}.zip
|
||||
@ -163,6 +163,7 @@ Patch9147: 0148-cleancode-refactor-lwipsock.h.patch
|
||||
Patch9148: 0149-cleancode-refactor-posix-type-and-get_socket.patch
|
||||
Patch9149: 0150-cleancode-refactor-posix_api.patch
|
||||
Patch9150: 0151-cleancode-refactor-lwipgz_list.h.patch
|
||||
Patch9151: 0152-cleancode-refactor-lwipgz_hlist.h.patch
|
||||
|
||||
BuildRequires: gcc-c++ dos2unix dpdk-devel
|
||||
|
||||
@ -192,6 +193,9 @@ cd %{_builddir}/%{name}-%{version}/src
|
||||
%{_libdir}/liblwip.a
|
||||
|
||||
%changelog
|
||||
* Thu Jul 18 2024 LemmyHuang <huangliming5@huawei.com> - 2.2.0-44
|
||||
- cleancode: refactor lwipgz_hlist.h
|
||||
|
||||
* Thu Jul 18 2024 LemmyHuang <huangliming5@huawei.com> - 2.2.0-43
|
||||
- cleancode: refactor lwipgz_list.h
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user