cregit-Linux how code gets into the kernel

Release 4.10 fs/ceph/cache.h

Directory: fs/ceph
/*
 * Ceph cache definitions.
 *
 *  Copyright (C) 2013 by Adfin Solutions, Inc. All Rights Reserved.
 *  Written by Milosz Tanski (milosz@adfin.com)
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2
 *  as published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to:
 *  Free Software Foundation
 *  51 Franklin Street, Fifth Floor
 *  Boston, MA  02111-1301  USA
 *
 */

#ifndef _CEPH_CACHE_H

#define _CEPH_CACHE_H

#ifdef CONFIG_CEPH_FSCACHE

extern struct fscache_netfs ceph_cache_netfs;

int ceph_fscache_register(void);
void ceph_fscache_unregister(void);

int ceph_fscache_register_fs(struct ceph_fs_client* fsc);
void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc);

void ceph_fscache_register_inode_cookie(struct inode *inode);
void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info* ci);
void ceph_fscache_file_set_cookie(struct inode *inode, struct file *filp);
void ceph_fscache_revalidate_cookie(struct ceph_inode_info *ci);

int ceph_readpage_from_fscache(struct inode *inode, struct page *page);
int ceph_readpages_from_fscache(struct inode *inode,
				struct address_space *mapping,
				struct list_head *pages,
				unsigned *nr_pages);
void ceph_readpage_to_fscache(struct inode *inode, struct page *page);
void ceph_invalidate_fscache_page(struct inode* inode, struct page *page);


static inline void ceph_fscache_inode_init(struct ceph_inode_info *ci) { ci->fscache = NULL; ci->i_fscache_gen = 0; }

Contributors

PersonTokensPropCommitsCommitProp
zhen yanzhen yan1979.17%150.00%
milosz tanskimilosz tanski520.83%150.00%
Total24100.00%2100.00%


static inline void ceph_fscache_invalidate(struct inode *inode) { fscache_invalidate(ceph_inode(inode)->fscache); }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski22100.00%1100.00%
Total22100.00%1100.00%


static inline void ceph_fscache_uncache_page(struct inode *inode, struct page *page) { struct ceph_inode_info *ci = ceph_inode(inode); return fscache_uncache_page(ci->fscache, page); }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski37100.00%1100.00%
Total37100.00%1100.00%


static inline int ceph_release_fscache_page(struct page *page, gfp_t gfp) { struct inode* inode = page->mapping->host; struct ceph_inode_info *ci = ceph_inode(inode); return fscache_maybe_release_page(ci->fscache, page, gfp); }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski48100.00%1100.00%
Total48100.00%1100.00%


static inline void ceph_fscache_readpage_cancel(struct inode *inode, struct page *page) { struct ceph_inode_info *ci = ceph_inode(inode); if (fscache_cookie_valid(ci->fscache) && PageFsCache(page)) __fscache_uncache_page(ci->fscache, page); }

Contributors

PersonTokensPropCommitsCommitProp
li wangli wang50100.00%1100.00%
Total50100.00%1100.00%


static inline void ceph_fscache_readpages_cancel(struct inode *inode, struct list_head *pages) { struct ceph_inode_info *ci = ceph_inode(inode); return fscache_readpages_cancel(ci->fscache, pages); }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski37100.00%1100.00%
Total37100.00%1100.00%


static inline void ceph_disable_fscache_readpage(struct ceph_inode_info *ci) { ci->i_fscache_gen = ci->i_rdcache_gen - 1; }

Contributors

PersonTokensPropCommitsCommitProp
zhen yanzhen yan22100.00%1100.00%
Total22100.00%1100.00%

#else
static inline int ceph_fscache_register(void) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski12100.00%1100.00%
Total12100.00%1100.00%


static inline void ceph_fscache_unregister(void) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski8100.00%1100.00%
Total8100.00%1100.00%


static inline int ceph_fscache_register_fs(struct ceph_fs_client* fsc) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski15100.00%1100.00%
Total15100.00%1100.00%


static inline void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski11100.00%1100.00%
Total11100.00%1100.00%


static inline void ceph_fscache_inode_init(struct ceph_inode_info *ci) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski11100.00%1100.00%
Total11100.00%1100.00%


static inline void ceph_fscache_register_inode_cookie(struct inode *inode) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski763.64%150.00%
zhen yanzhen yan436.36%150.00%
Total11100.00%2100.00%


static inline void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info* ci) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski654.55%150.00%
zhen yanzhen yan545.45%150.00%
Total11100.00%2100.00%


static inline void ceph_fscache_file_set_cookie(struct inode *inode, struct file *filp) { }

Contributors

PersonTokensPropCommitsCommitProp
zhen yanzhen yan16100.00%1100.00%
Total16100.00%1100.00%


static inline void ceph_fscache_revalidate_cookie(struct ceph_inode_info *ci) { }

Contributors

PersonTokensPropCommitsCommitProp
zhen yanzhen yan11100.00%1100.00%
Total11100.00%1100.00%


static inline void ceph_fscache_uncache_page(struct inode *inode, struct page *pages) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski16100.00%2100.00%
Total16100.00%2100.00%


static inline int ceph_readpage_from_fscache(struct inode* inode, struct page *page) { return -ENOBUFS; }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski21100.00%1100.00%
Total21100.00%1100.00%


static inline int ceph_readpages_from_fscache(struct inode *inode, struct address_space *mapping, struct list_head *pages, unsigned *nr_pages) { return -ENOBUFS; }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski30100.00%1100.00%
Total30100.00%1100.00%


static inline void ceph_readpage_to_fscache(struct inode *inode, struct page *page) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski1593.75%150.00%
yunchuan wenyunchuan wen16.25%150.00%
Total16100.00%2100.00%


static inline void ceph_fscache_invalidate(struct inode *inode) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski11100.00%1100.00%
Total11100.00%1100.00%


static inline void ceph_invalidate_fscache_page(struct inode *inode, struct page *page) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski16100.00%1100.00%
Total16100.00%1100.00%


static inline int ceph_release_fscache_page(struct page *page, gfp_t gfp) { return 1; }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski18100.00%1100.00%
Total18100.00%1100.00%


static inline void ceph_fscache_readpage_cancel(struct inode *inode, struct page *page) { }

Contributors

PersonTokensPropCommitsCommitProp
li wangli wang16100.00%1100.00%
Total16100.00%1100.00%


static inline void ceph_fscache_readpages_cancel(struct inode *inode, struct list_head *pages) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski16100.00%1100.00%
Total16100.00%1100.00%


static inline void ceph_disable_fscache_readpage(struct ceph_inode_info *ci) { }

Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski872.73%150.00%
zhen yanzhen yan327.27%150.00%
Total11100.00%2100.00%

#endif #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
milosz tanskimilosz tanski50374.63%450.00%
zhen yanzhen yan10415.43%225.00%
li wangli wang669.79%112.50%
yunchuan wenyunchuan wen10.15%112.50%
Total674100.00%8100.00%
Directory: fs/ceph
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.