-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xia/lpm: remove routing/forwarding deadlock #17
base: xia
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,6 +171,12 @@ static void list_fxid_init(struct fib_xid *fxid, int table_id, int entry_type) | |
fxid->dead.xtbl = NULL; | ||
} | ||
|
||
static void list_fxid_copy(struct fib_xid *old_fxid, struct fib_xid *new_fxid) | ||
{ | ||
memcpy(new_fxid, old_fxid, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Although it's unlikely that |
||
sizeof(*old_fxid) + sizeof(struct list_fib_xid)); | ||
} | ||
|
||
static void list_xtbl_death_work(struct work_struct *work) | ||
{ | ||
struct fib_xid_table *xtbl = container_of(work, struct fib_xid_table, | ||
|
@@ -621,6 +627,7 @@ const struct xia_ppal_rt_iops xia_ppal_list_rt_iops = { | |
|
||
.fxid_ppal_alloc = list_fxid_ppal_alloc, | ||
.fxid_init = list_fxid_init, | ||
.fxid_copy = list_fxid_copy, | ||
|
||
.fxid_find_rcu = list_fxid_find_rcu, | ||
.fxid_find_lock = list_fxid_find_lock, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,6 +105,7 @@ static int newroute_flush_anchor_unlock(struct fib_xid_table *xtbl, | |
* node with the new one in the tree. | ||
*/ | ||
xdst_init_anchor(&dup_llpm->anchor); | ||
lpm_rt_iops->fxid_copy(&dup_llpm->common, pred_fxid); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you've inverted the parameters of |
||
lpm_rt_iops->fxid_replace_locked(xtbl, pred_fxid, | ||
&dup_llpm->common); | ||
|
||
|
@@ -136,6 +137,7 @@ static int newroute_flush_anchor_unlock(struct fib_xid_table *xtbl, | |
} | ||
|
||
dup_mrd->gw = fxid_mrd(pred_fxid)->gw; | ||
lpm_rt_iops->fxid_copy(&dup_mrd->common, pred_fxid); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you've inverted the parameters of |
||
lpm_rt_iops->fxid_replace_locked(xtbl, pred_fxid, | ||
&dup_mrd->common); | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,6 +109,12 @@ static void tree_fxid_init(struct fib_xid *fxid, int table_id, int entry_type) | |
fxid->dead.xtbl = NULL; | ||
} | ||
|
||
static void tree_fxid_copy(struct fib_xid *old_fxid, struct fib_xid *new_fxid) | ||
{ | ||
memcpy(new_fxid, old_fxid, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Although it's unlikely that |
||
sizeof(*old_fxid) + sizeof(struct tree_fib_xid)); | ||
} | ||
|
||
static inline void disconnect_from_parent(struct tree_fib_xid *node) | ||
{ | ||
if (node && node->parent) { | ||
|
@@ -683,6 +689,7 @@ const struct xia_ppal_rt_iops xia_ppal_tree_rt_iops = { | |
|
||
.fxid_ppal_alloc = tree_fxid_ppal_alloc, | ||
.fxid_init = tree_fxid_init, | ||
.fxid_copy = tree_fxid_copy, | ||
|
||
/* Note that there is no RCU-specific version. */ | ||
.fxid_find_rcu = tree_fxid_find_rcu, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you mind swapping the position of the parameters? The assigning order is followed by the C library, and it bothers to go against it. A few examples:
memcpy()
,memmove()
, andstrcpy()
.