super.c (efd15f5f4ff63f6ac5d80850686e3d2cc8c4481b) | super.c (1ab6c4997e04a00c50c6d786c2f046adc0d1f5de) |
---|---|
1/* 2 * This file is part of UBIFS. 3 * 4 * Copyright (C) 2006-2008 Nokia Corporation. 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 as published by 8 * the Free Software Foundation. --- 35 unchanged lines hidden (view full) --- 44 */ 45#define UBIFS_KMALLOC_OK (128*1024) 46 47/* Slab cache for UBIFS inodes */ 48struct kmem_cache *ubifs_inode_slab; 49 50/* UBIFS TNC shrinker description */ 51static struct shrinker ubifs_shrinker_info = { | 1/* 2 * This file is part of UBIFS. 3 * 4 * Copyright (C) 2006-2008 Nokia Corporation. 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 as published by 8 * the Free Software Foundation. --- 35 unchanged lines hidden (view full) --- 44 */ 45#define UBIFS_KMALLOC_OK (128*1024) 46 47/* Slab cache for UBIFS inodes */ 48struct kmem_cache *ubifs_inode_slab; 49 50/* UBIFS TNC shrinker description */ 51static struct shrinker ubifs_shrinker_info = { |
52 .shrink = ubifs_shrinker, | 52 .scan_objects = ubifs_shrink_scan, 53 .count_objects = ubifs_shrink_count, |
53 .seeks = DEFAULT_SEEKS, 54}; 55 56/** 57 * validate_inode - validate inode. 58 * @c: UBIFS file-system description object 59 * @inode: the inode to validate 60 * --- 2247 unchanged lines hidden --- | 54 .seeks = DEFAULT_SEEKS, 55}; 56 57/** 58 * validate_inode - validate inode. 59 * @c: UBIFS file-system description object 60 * @inode: the inode to validate 61 * --- 2247 unchanged lines hidden --- |