dst garbage summary
garbage collection
is a common method used in kernel.
When a object(struct,memeory) become invalid, we need
free them, but the object maybe reference by others.
such as a dst_entry
is not invalid, and it is still
referenced(used) by others.
then __dst_free
will be called for this case.
It will first set dst
to dirty(dead),
and then put it into dst_garbage.list
by dst->next
.
Then a workqueue task will check the dst
‘s reference,
and free(destory) it when no reference on it.
Two key struct struct dst_garbage
and dst_gc_work