Actions
Bug #2796
closedpanic when create and destroy lagg interface
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
02/26/2015
Due date:
% Done:
0%
Estimated time:
Description
for i in `seq 1 100`;
do
ifconfig lagg0 create
ifconfig lagg0 destroy
done
the shell ahove helps to trigger create and destroy lagg interface mutiple times.
it is potential that the below line will cause problem.
line 454 if_lagg.c lagg_clone_destroy()
kfree(sc, M_DEVBUF);
Files
Updated by profmakx over 9 years ago
- File 0001-net-if_lagg-Fix-double-free-issue.patch 0001-net-if_lagg-Fix-double-free-issue.patch added
This is due to a double free issue in lagg_clone_destroy. Try the attached patch, please.
Updated by profmakx over 9 years ago
This has been applied to -master in commit 8249c641
Actions