namei.c (18bb1db3e7607e4a997d50991a6f9fa5b0f8722c) namei.c (4acdaf27ebe2034c342f3be57ef49aed1ad885ef)
1/*
2 * namei.c
3 *
4 * PURPOSE
5 * Inode name handling routines for the OSTA-UDF(tm) filesystem.
6 *
7 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public

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

547 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
548
549 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
550 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
551
552 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
553}
554
1/*
2 * namei.c
3 *
4 * PURPOSE
5 * Inode name handling routines for the OSTA-UDF(tm) filesystem.
6 *
7 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public

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

547 cfi->fileCharacteristics |= FID_FILE_CHAR_DELETED;
548
549 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
550 memset(&(cfi->icb), 0x00, sizeof(struct long_ad));
551
552 return udf_write_fi(inode, cfi, fi, fibh, NULL, NULL);
553}
554
555static int udf_create(struct inode *dir, struct dentry *dentry, int mode,
555static int udf_create(struct inode *dir, struct dentry *dentry, umode_t mode,
556 struct nameidata *nd)
557{
558 struct udf_fileident_bh fibh;
559 struct inode *inode;
560 struct fileIdentDesc cfi, *fi;
561 int err;
562 struct udf_inode_info *iinfo;
563

--- 772 unchanged lines hidden ---
556 struct nameidata *nd)
557{
558 struct udf_fileident_bh fibh;
559 struct inode *inode;
560 struct fileIdentDesc cfi, *fi;
561 int err;
562 struct udf_inode_info *iinfo;
563

--- 772 unchanged lines hidden ---