cregit-Linux how code gets into the kernel

Release 4.17 fs/coda/cnode.c

Directory: fs/coda
// SPDX-License-Identifier: GPL-2.0
/* cnode related routines for the coda kernel code
   (C) 1996 Peter Braam
   */

#include <linux/types.h>
#include <linux/string.h>
#include <linux/time.h>

#include <linux/coda.h>
#include <linux/coda_psdev.h>
#include <linux/pagemap.h>
#include "coda_linux.h"


static inline int coda_fideq(struct CodaFid *fid1, struct CodaFid *fid2) { return memcmp(fid1, fid2, sizeof(*fid1)) == 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1751.52%120.00%
Jan Harkes1545.45%360.00%
Linus Torvalds13.03%120.00%
Total33100.00%5100.00%

static const struct inode_operations coda_symlink_inode_operations = { .get_link = page_get_link, .setattr = coda_setattr, }; /* cnode.c */
static void coda_fill_inode(struct inode *inode, struct coda_vattr *attr) { coda_vattr_to_iattr(inode, attr); if (S_ISREG(inode->i_mode)) { inode->i_op = &coda_file_inode_operations; inode->i_fop = &coda_file_operations; } else if (S_ISDIR(inode->i_mode)) { inode->i_op = &coda_dir_inode_operations; inode->i_fop = &coda_dir_operations; } else if (S_ISLNK(inode->i_mode)) { inode->i_op = &coda_symlink_inode_operations; inode_nohighmem(inode); inode->i_data.a_ops = &coda_symlink_aops; inode->i_mapping = &inode->i_data; } else init_special_inode(inode, inode->i_mode, huge_decode_dev(attr->va_rdev)); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)12593.98%666.67%
Al Viro86.02%333.33%
Total133100.00%9100.00%


static int coda_test_inode(struct inode *inode, void *data) { struct CodaFid *fid = (struct CodaFid *)data; struct coda_inode_info *cii = ITOC(inode); return coda_fideq(&cii->c_fid, fid); }

Contributors

PersonTokensPropCommitsCommitProp
Jan Harkes3777.08%266.67%
Yoshihisa Abe1122.92%133.33%
Total48100.00%3100.00%


static int coda_set_inode(struct inode *inode, void *data) { struct CodaFid *fid = (struct CodaFid *)data; struct coda_inode_info *cii = ITOC(inode); cii->c_fid = *fid; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Jan Harkes4085.11%266.67%
Yoshihisa Abe714.89%133.33%
Total47100.00%3100.00%


struct inode * coda_iget(struct super_block * sb, struct CodaFid * fid, struct coda_vattr * attr) { struct inode *inode; struct coda_inode_info *cii; unsigned long hash = coda_f2i(fid); inode = iget5_locked(sb, hash, coda_test_inode, coda_set_inode, fid); if (!inode) return ERR_PTR(-ENOMEM); if (inode->i_state & I_NEW) { cii = ITOC(inode); /* we still need to set i_ino for things like stat(2) */ inode->i_ino = hash; /* inode is locked and unique, no need to grab cii->c_lock */ cii->c_mapcount = 0; unlock_new_inode(inode); } /* always replace the attributes, type might have changed */ coda_fill_inode(inode, attr); return inode; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)5648.70%430.77%
Jan Harkes5043.48%646.15%
Linus Torvalds86.96%215.38%
Yoshihisa Abe10.87%17.69%
Total115100.00%13100.00%

/* this is effectively coda_iget: - get attributes (might be cached) - get the inode for the fid using vfs iget - link the two up if this is needed - fill in the attributes */
struct inode *coda_cnode_make(struct CodaFid *fid, struct super_block *sb) { struct coda_vattr attr; struct inode *inode; int error; /* We get inode numbers from Venus -- see venus source */ error = venus_getattr(sb, fid, &attr); if (error) return ERR_PTR(error); inode = coda_iget(sb, fid, &attr); if (IS_ERR(inode)) pr_warn("%s: coda_iget failed\n", __func__); return inode; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)6580.25%342.86%
Al Viro1012.35%114.29%
Fabian Frederick44.94%228.57%
Jan Harkes22.47%114.29%
Total81100.00%7100.00%

/* Although we treat Coda file identifiers as immutable, there is one * special case for files created during a disconnection where they may * not be globally unique. When an identifier collision is detected we * first try to flush the cached inode from the kernel and finally * resort to renaming/rehashing in-place. Userspace remembers both old * and new values of the identifier to handle any in-flight upcalls. * The real solution is to use globally unique UUIDs as identifiers, but * retrofitting the existing userspace code for this is non-trivial. */
void coda_replace_fid(struct inode *inode, struct CodaFid *oldfid, struct CodaFid *newfid) { struct coda_inode_info *cii = ITOC(inode); unsigned long hash = coda_f2i(newfid); BUG_ON(!coda_fideq(&cii->c_fid, oldfid)); /* replace fid and rehash inode */ /* XXX we probably need to hold some lock here! */ remove_inode_hash(inode); cii->c_fid = *newfid; inode->i_ino = hash; __insert_inode_hash(inode, hash); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4353.75%228.57%
Jan Harkes1518.75%228.57%
Linus Torvalds1417.50%114.29%
Yoshihisa Abe56.25%114.29%
Eric Sesterhenn / Snakebyte33.75%114.29%
Total80100.00%7100.00%

/* convert a fid to an inode. */
struct inode *coda_fid_to_inode(struct CodaFid *fid, struct super_block *sb) { struct inode *inode; unsigned long hash = coda_f2i(fid); if ( !sb ) { pr_warn("%s: no sb!\n", __func__); return NULL; } inode = ilookup5(sb, hash, coda_test_inode, fid); if ( !inode ) return NULL; /* we should never see newly created inodes because we intentionally * fail in the initialization callback */ BUG_ON(inode->i_state & I_NEW); return inode; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)5162.20%433.33%
Jan Harkes2530.49%541.67%
Fabian Frederick44.88%216.67%
Linus Torvalds22.44%18.33%
Total82100.00%12100.00%

/* the CONTROL inode is made without asking attributes from Venus */
struct inode *coda_cnode_makectl(struct super_block *sb) { struct inode *inode = new_inode(sb); if (inode) { inode->i_ino = CTL_INO; inode->i_op = &coda_ioctl_inode_operations; inode->i_fop = &coda_ioctl_operations; inode->i_mode = 0444; return inode; } return ERR_PTR(-ENOMEM); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4265.62%360.00%
Al Viro1523.44%120.00%
Jan Harkes710.94%120.00%
Total64100.00%5100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)42858.71%1435.00%
Jan Harkes19426.61%922.50%
Al Viro435.90%922.50%
Linus Torvalds263.57%25.00%
Yoshihisa Abe253.43%12.50%
Fabian Frederick81.10%25.00%
Eric Sesterhenn / Snakebyte30.41%12.50%
Arjan van de Ven10.14%12.50%
Greg Kroah-Hartman10.14%12.50%
Total729100.00%40100.00%
Directory: fs/coda
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.