Message ID | 20200126011436.22979-1-richardw.yang@linux.intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | mm/swap.c: not necessary to export __pagevec_lru_add() | expand |
diff --git a/mm/swap.c b/mm/swap.c index 0f35f5394c51..e45a10f7f3d6 100644 --- a/mm/swap.c +++ b/mm/swap.c @@ -983,7 +983,6 @@ void __pagevec_lru_add(struct pagevec *pvec) { pagevec_lru_move_fn(pvec, __pagevec_lru_add_fn, NULL); } -EXPORT_SYMBOL(__pagevec_lru_add); /** * pagevec_lookup_entries - gang pagecache lookup
Function __pagevec_lru_add() only used in mm directory now. Remove the export symbol. Signed-off-by: Wei Yang <richardw.yang@linux.intel.com> --- mm/swap.c | 1 - 1 file changed, 1 deletion(-)