From: Konrad Rzeszutek Wilk on 9 Mar 2010 17:20 The previous function names were misleading by including "with_default_size" as the size was being passed in as argument. Change the functions names to be clear on what they do. Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk(a)oracle.com> --- lib/swiotlb.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/swiotlb.c b/lib/swiotlb.c index e6d9e32..737ceb7 100644 --- a/lib/swiotlb.c +++ b/lib/swiotlb.c @@ -146,7 +146,7 @@ void swiotlb_print_info(void) * structures for the software IO TLB used to implement the DMA API. */ void __init -swiotlb_init_with_default_size(size_t default_size, int verbose) +swiotlb_init_early(size_t default_size, int verbose) { unsigned long i, bytes; @@ -189,7 +189,7 @@ swiotlb_init_with_default_size(size_t default_size, int verbose) void __init swiotlb_init(int verbose) { - swiotlb_init_with_default_size(64 * (1<<20), verbose); /* default to 64MB */ + swiotlb_init_early(64 * (1<<20), verbose); /* default to 64MB */ } /* @@ -198,7 +198,7 @@ swiotlb_init(int verbose) * This should be just like above, but with some error catching. */ int -swiotlb_late_init_with_default_size(size_t default_size) +swiotlb_init_late(size_t default_size) { unsigned long i, bytes, req_nslabs = io_tlb_nslabs; unsigned int order; -- 1.6.2.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|
Pages: 1 Prev: [2.6.34-rc1][libata] regression? Next: swiotlb: minor fixes for 2.6.35 |