vfs_inode.c (85ff872d3f4a62d076d698bd1fa15ca2a4d7c100) vfs_inode.c (22d8dcdf8f8a3882d98757e78169014bb0bc6b23)
1/*
2 * linux/fs/9p/vfs_inode.c
3 *
4 * This file contains vfs inode ops for the 9P2000 protocol.
5 *
6 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
7 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
8 *

--- 1228 unchanged lines hidden (view full) ---

1237
1238/**
1239 * v9fs_vfs_setattr_dotl - set file metadata
1240 * @dentry: file whose metadata to set
1241 * @iattr: metadata assignment structure
1242 *
1243 */
1244
1/*
2 * linux/fs/9p/vfs_inode.c
3 *
4 * This file contains vfs inode ops for the 9P2000 protocol.
5 *
6 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
7 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
8 *

--- 1228 unchanged lines hidden (view full) ---

1237
1238/**
1239 * v9fs_vfs_setattr_dotl - set file metadata
1240 * @dentry: file whose metadata to set
1241 * @iattr: metadata assignment structure
1242 *
1243 */
1244
1245static int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
1245int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
1246{
1247 int retval;
1248 struct v9fs_session_info *v9ses;
1249 struct p9_fid *fid;
1250 struct p9_iattr_dotl p9attr;
1251
1252 P9_DPRINTK(P9_DEBUG_VFS, "\n");
1253

--- 764 unchanged lines hidden ---
1246{
1247 int retval;
1248 struct v9fs_session_info *v9ses;
1249 struct p9_fid *fid;
1250 struct p9_iattr_dotl p9attr;
1251
1252 P9_DPRINTK(P9_DEBUG_VFS, "\n");
1253

--- 764 unchanged lines hidden ---