License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 15:07:57 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/fs/ufs/namei.c
|
|
|
|
*
|
2006-06-25 14:47:22 +02:00
|
|
|
* Migration to usage of "page cache" on May 2006 by
|
|
|
|
* Evgeniy Dushistov <dushistov@mail.ru> based on ext2 code base.
|
|
|
|
*
|
2005-04-17 00:20:36 +02:00
|
|
|
* Copyright (C) 1998
|
|
|
|
* Daniel Pirkl <daniel.pirkl@email.cz>
|
|
|
|
* Charles University, Faculty of Mathematics and Physics
|
|
|
|
*
|
|
|
|
* from
|
|
|
|
*
|
|
|
|
* linux/fs/ext2/namei.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992, 1993, 1994, 1995
|
|
|
|
* Remy Card (card@masi.ibp.fr)
|
|
|
|
* Laboratoire MASI - Institut Blaise Pascal
|
|
|
|
* Universite Pierre et Marie Curie (Paris VI)
|
|
|
|
*
|
|
|
|
* from
|
|
|
|
*
|
|
|
|
* linux/fs/minix/namei.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
|
|
*
|
|
|
|
* Big-endian to little-endian byte-swapping/bitmaps by
|
|
|
|
* David S. Miller (davem@caip.rutgers.edu), 1995
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/time.h>
|
|
|
|
#include <linux/fs.h>
|
2008-02-08 13:21:31 +01:00
|
|
|
|
|
|
|
#include "ufs_fs.h"
|
2007-10-17 08:26:51 +02:00
|
|
|
#include "ufs.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static inline int ufs_add_nondir(struct dentry *dentry, struct inode *inode)
|
|
|
|
{
|
|
|
|
int err = ufs_add_link(dentry, inode);
|
|
|
|
if (!err) {
|
2018-05-04 14:23:01 +02:00
|
|
|
d_instantiate_new(dentry, inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_dec_link_count(inode);
|
2018-05-16 18:22:50 +02:00
|
|
|
discard_new_inode(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2012-06-10 23:13:09 +02:00
|
|
|
static struct dentry *ufs_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct inode * inode = NULL;
|
|
|
|
ino_t ino;
|
|
|
|
|
|
|
|
if (dentry->d_name.len > UFS_MAXNAMLEN)
|
|
|
|
return ERR_PTR(-ENAMETOOLONG);
|
|
|
|
|
2009-12-16 01:46:50 +01:00
|
|
|
ino = ufs_inode_by_name(dir, &dentry->d_name);
|
2011-07-17 16:07:34 +02:00
|
|
|
if (ino)
|
2008-02-07 09:15:48 +01:00
|
|
|
inode = ufs_iget(dir->i_sb, ino);
|
2011-07-17 16:07:34 +02:00
|
|
|
return d_splice_alias(inode, dentry);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* By the time this is called, we already have created
|
|
|
|
* the directory cache entry for the new file, but it
|
|
|
|
* is so far negative - it has no inode.
|
|
|
|
*
|
|
|
|
* If the create succeeds, we fill in the inode information
|
|
|
|
* with d_instantiate().
|
|
|
|
*/
|
2011-07-26 07:42:34 +02:00
|
|
|
static int ufs_create (struct inode * dir, struct dentry * dentry, umode_t mode,
|
2012-06-11 00:05:36 +02:00
|
|
|
bool excl)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2006-06-25 14:47:24 +02:00
|
|
|
struct inode *inode;
|
2010-03-03 15:05:06 +01:00
|
|
|
|
2006-06-25 14:47:24 +02:00
|
|
|
inode = ufs_new_inode(dir, mode);
|
2015-06-16 07:50:43 +02:00
|
|
|
if (IS_ERR(inode))
|
|
|
|
return PTR_ERR(inode);
|
2006-06-25 14:47:24 +02:00
|
|
|
|
2015-06-16 07:50:43 +02:00
|
|
|
inode->i_op = &ufs_file_inode_operations;
|
|
|
|
inode->i_fop = &ufs_file_operations;
|
|
|
|
inode->i_mapping->a_ops = &ufs_aops;
|
|
|
|
mark_inode_dirty(inode);
|
|
|
|
return ufs_add_nondir(dentry, inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2011-07-26 07:52:52 +02:00
|
|
|
static int ufs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct inode *inode;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (!old_valid_dev(rdev))
|
|
|
|
return -EINVAL;
|
2010-03-03 15:05:06 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
inode = ufs_new_inode(dir, mode);
|
|
|
|
err = PTR_ERR(inode);
|
|
|
|
if (!IS_ERR(inode)) {
|
|
|
|
init_special_inode(inode, mode, rdev);
|
|
|
|
ufs_set_inode_dev(inode->i_sb, UFS_I(inode), rdev);
|
|
|
|
mark_inode_dirty(inode);
|
|
|
|
err = ufs_add_nondir(dentry, inode);
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ufs_symlink (struct inode * dir, struct dentry * dentry,
|
|
|
|
const char * symname)
|
|
|
|
{
|
|
|
|
struct super_block * sb = dir->i_sb;
|
2015-06-16 07:50:43 +02:00
|
|
|
int err;
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned l = strlen(symname)+1;
|
|
|
|
struct inode * inode;
|
|
|
|
|
|
|
|
if (l > sb->s_blocksize)
|
2015-06-16 07:50:43 +02:00
|
|
|
return -ENAMETOOLONG;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
inode = ufs_new_inode(dir, S_IFLNK | S_IRWXUGO);
|
|
|
|
err = PTR_ERR(inode);
|
|
|
|
if (IS_ERR(inode))
|
2015-06-16 07:50:43 +02:00
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (l > UFS_SB(sb)->s_uspi->s_maxsymlinklen) {
|
|
|
|
/* slow symlink */
|
2015-11-16 00:24:17 +01:00
|
|
|
inode->i_op = &page_symlink_inode_operations;
|
2015-11-17 07:07:57 +01:00
|
|
|
inode_nohighmem(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
inode->i_mapping->a_ops = &ufs_aops;
|
|
|
|
err = page_symlink(inode, symname, l);
|
|
|
|
if (err)
|
|
|
|
goto out_fail;
|
|
|
|
} else {
|
|
|
|
/* fast symlink */
|
2015-11-16 00:24:17 +01:00
|
|
|
inode->i_op = &simple_symlink_inode_operations;
|
2015-05-02 16:28:56 +02:00
|
|
|
inode->i_link = (char *)UFS_I(inode)->i_u1.i_symlink;
|
|
|
|
memcpy(inode->i_link, symname, l);
|
2005-04-17 00:20:36 +02:00
|
|
|
inode->i_size = l-1;
|
|
|
|
}
|
|
|
|
mark_inode_dirty(inode);
|
|
|
|
|
2015-06-16 07:50:43 +02:00
|
|
|
return ufs_add_nondir(dentry, inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
out_fail:
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_dec_link_count(inode);
|
2018-05-16 18:22:50 +02:00
|
|
|
discard_new_inode(inode);
|
2015-06-16 07:50:43 +02:00
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ufs_link (struct dentry * old_dentry, struct inode * dir,
|
|
|
|
struct dentry *dentry)
|
|
|
|
{
|
2015-03-17 23:25:59 +01:00
|
|
|
struct inode *inode = d_inode(old_dentry);
|
2005-04-17 00:20:36 +02:00
|
|
|
int error;
|
|
|
|
|
2016-09-14 16:48:05 +02:00
|
|
|
inode->i_ctime = current_time(inode);
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_inc_link_count(inode);
|
2010-10-23 17:11:40 +02:00
|
|
|
ihold(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2015-06-01 14:52:04 +02:00
|
|
|
error = ufs_add_link(dentry, inode);
|
|
|
|
if (error) {
|
|
|
|
inode_dec_link_count(inode);
|
|
|
|
iput(inode);
|
|
|
|
} else
|
|
|
|
d_instantiate(dentry, inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2011-07-26 07:41:39 +02:00
|
|
|
static int ufs_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct inode * inode;
|
2012-02-06 18:45:27 +01:00
|
|
|
int err;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2015-06-10 02:09:32 +02:00
|
|
|
inode_inc_link_count(dir);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
inode = ufs_new_inode(dir, S_IFDIR|mode);
|
2015-06-10 02:09:32 +02:00
|
|
|
err = PTR_ERR(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (IS_ERR(inode))
|
2015-06-10 02:09:32 +02:00
|
|
|
goto out_dir;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
inode->i_op = &ufs_dir_inode_operations;
|
|
|
|
inode->i_fop = &ufs_dir_operations;
|
2006-06-25 14:47:21 +02:00
|
|
|
inode->i_mapping->a_ops = &ufs_aops;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_inc_link_count(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
err = ufs_make_empty(inode, dir);
|
|
|
|
if (err)
|
|
|
|
goto out_fail;
|
|
|
|
|
|
|
|
err = ufs_add_link(dentry, inode);
|
|
|
|
if (err)
|
|
|
|
goto out_fail;
|
|
|
|
|
2018-05-04 14:23:01 +02:00
|
|
|
d_instantiate_new(dentry, inode);
|
2015-06-16 07:50:43 +02:00
|
|
|
return 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
out_fail:
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_dec_link_count(inode);
|
|
|
|
inode_dec_link_count(inode);
|
2018-05-16 18:22:50 +02:00
|
|
|
discard_new_inode(inode);
|
2015-06-10 02:09:32 +02:00
|
|
|
out_dir:
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_dec_link_count(dir);
|
2015-06-16 07:50:43 +02:00
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2006-06-25 14:47:22 +02:00
|
|
|
static int ufs_unlink(struct inode *dir, struct dentry *dentry)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2015-03-17 23:25:59 +01:00
|
|
|
struct inode * inode = d_inode(dentry);
|
2006-06-25 14:47:22 +02:00
|
|
|
struct ufs_dir_entry *de;
|
|
|
|
struct page *page;
|
2005-04-17 00:20:36 +02:00
|
|
|
int err = -ENOENT;
|
|
|
|
|
2009-12-16 01:46:50 +01:00
|
|
|
de = ufs_find_entry(dir, &dentry->d_name, &page);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!de)
|
|
|
|
goto out;
|
|
|
|
|
2006-06-25 14:47:22 +02:00
|
|
|
err = ufs_delete_entry(dir, de, page);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
inode->i_ctime = dir->i_ctime;
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_dec_link_count(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
err = 0;
|
|
|
|
out:
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ufs_rmdir (struct inode * dir, struct dentry *dentry)
|
|
|
|
{
|
2015-03-17 23:25:59 +01:00
|
|
|
struct inode * inode = d_inode(dentry);
|
2005-04-17 00:20:36 +02:00
|
|
|
int err= -ENOTEMPTY;
|
|
|
|
|
|
|
|
if (ufs_empty_dir (inode)) {
|
|
|
|
err = ufs_unlink(dir, dentry);
|
|
|
|
if (!err) {
|
|
|
|
inode->i_size = 0;
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_dec_link_count(inode);
|
|
|
|
inode_dec_link_count(dir);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2006-06-25 14:47:22 +02:00
|
|
|
static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
|
fs: support RENAME_NOREPLACE for local filesystems
This is trivial to do:
- add flags argument to foo_rename()
- check if flags doesn't have any other than RENAME_NOREPLACE
- assign foo_rename() to .rename2 instead of .rename
Filesystems converted:
affs, bfs, exofs, ext2, hfs, hfsplus, jffs2, jfs, logfs, minix, msdos,
nilfs2, omfs, reiserfs, sysvfs, ubifs, udf, ufs, vfat.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Acked-by: Boaz Harrosh <ooo@electrozaur.com>
Acked-by: Richard Weinberger <richard@nod.at>
Acked-by: Bob Copeland <me@bobcopeland.com>
Acked-by: Jan Kara <jack@suse.cz>
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Cc: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Cc: Mikulas Patocka <mpatocka@redhat.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Dave Kleikamp <shaggy@kernel.org>
Cc: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Cc: Christoph Hellwig <hch@infradead.org>
2016-09-27 11:03:57 +02:00
|
|
|
struct inode *new_dir, struct dentry *new_dentry,
|
|
|
|
unsigned int flags)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2015-03-17 23:25:59 +01:00
|
|
|
struct inode *old_inode = d_inode(old_dentry);
|
|
|
|
struct inode *new_inode = d_inode(new_dentry);
|
2006-06-25 14:47:22 +02:00
|
|
|
struct page *dir_page = NULL;
|
|
|
|
struct ufs_dir_entry * dir_de = NULL;
|
|
|
|
struct page *old_page;
|
2005-04-17 00:20:36 +02:00
|
|
|
struct ufs_dir_entry *old_de;
|
|
|
|
int err = -ENOENT;
|
|
|
|
|
fs: support RENAME_NOREPLACE for local filesystems
This is trivial to do:
- add flags argument to foo_rename()
- check if flags doesn't have any other than RENAME_NOREPLACE
- assign foo_rename() to .rename2 instead of .rename
Filesystems converted:
affs, bfs, exofs, ext2, hfs, hfsplus, jffs2, jfs, logfs, minix, msdos,
nilfs2, omfs, reiserfs, sysvfs, ubifs, udf, ufs, vfat.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Acked-by: Boaz Harrosh <ooo@electrozaur.com>
Acked-by: Richard Weinberger <richard@nod.at>
Acked-by: Bob Copeland <me@bobcopeland.com>
Acked-by: Jan Kara <jack@suse.cz>
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Cc: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Cc: Mikulas Patocka <mpatocka@redhat.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Dave Kleikamp <shaggy@kernel.org>
Cc: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Cc: Christoph Hellwig <hch@infradead.org>
2016-09-27 11:03:57 +02:00
|
|
|
if (flags & ~RENAME_NOREPLACE)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2009-12-16 01:46:50 +01:00
|
|
|
old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!old_de)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (S_ISDIR(old_inode->i_mode)) {
|
|
|
|
err = -EIO;
|
2006-06-25 14:47:22 +02:00
|
|
|
dir_de = ufs_dotdot(old_inode, &dir_page);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!dir_de)
|
|
|
|
goto out_old;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_inode) {
|
2006-06-25 14:47:22 +02:00
|
|
|
struct page *new_page;
|
2005-04-17 00:20:36 +02:00
|
|
|
struct ufs_dir_entry *new_de;
|
|
|
|
|
|
|
|
err = -ENOTEMPTY;
|
2006-06-25 14:47:22 +02:00
|
|
|
if (dir_de && !ufs_empty_dir(new_inode))
|
2005-04-17 00:20:36 +02:00
|
|
|
goto out_dir;
|
2006-06-25 14:47:22 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
err = -ENOENT;
|
2009-12-16 01:46:50 +01:00
|
|
|
new_de = ufs_find_entry(new_dir, &new_dentry->d_name, &new_page);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!new_de)
|
|
|
|
goto out_dir;
|
2015-06-16 07:56:23 +02:00
|
|
|
ufs_set_link(new_dir, new_de, new_page, old_inode, 1);
|
2016-09-14 16:48:05 +02:00
|
|
|
new_inode->i_ctime = current_time(new_inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (dir_de)
|
2006-10-01 08:29:03 +02:00
|
|
|
drop_nlink(new_inode);
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_dec_link_count(new_inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
} else {
|
|
|
|
err = ufs_add_link(new_dentry, old_inode);
|
2011-03-02 15:40:21 +01:00
|
|
|
if (err)
|
2005-04-17 00:20:36 +02:00
|
|
|
goto out_dir;
|
|
|
|
if (dir_de)
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_inc_link_count(new_dir);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2006-06-25 14:47:22 +02:00
|
|
|
/*
|
|
|
|
* Like most other Unix systems, set the ctime for inodes on a
|
|
|
|
* rename.
|
|
|
|
*/
|
2016-09-14 16:48:05 +02:00
|
|
|
old_inode->i_ctime = current_time(old_inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-06-25 14:47:22 +02:00
|
|
|
ufs_delete_entry(old_dir, old_de, old_page);
|
2011-03-02 15:40:21 +01:00
|
|
|
mark_inode_dirty(old_inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (dir_de) {
|
2015-06-16 07:56:23 +02:00
|
|
|
if (old_dir != new_dir)
|
|
|
|
ufs_set_link(old_inode, dir_de, dir_page, new_dir, 0);
|
|
|
|
else {
|
|
|
|
kunmap(dir_page);
|
mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros
PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time
ago with promise that one day it will be possible to implement page
cache with bigger chunks than PAGE_SIZE.
This promise never materialized. And unlikely will.
We have many places where PAGE_CACHE_SIZE assumed to be equal to
PAGE_SIZE. And it's constant source of confusion on whether
PAGE_CACHE_* or PAGE_* constant should be used in a particular case,
especially on the border between fs and mm.
Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much
breakage to be doable.
Let's stop pretending that pages in page cache are special. They are
not.
The changes are pretty straight-forward:
- <foo> << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- <foo> >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN};
- page_cache_get() -> get_page();
- page_cache_release() -> put_page();
This patch contains automated changes generated with coccinelle using
script below. For some reason, coccinelle doesn't patch header files.
I've called spatch for them manually.
The only adjustment after coccinelle is revert of changes to
PAGE_CAHCE_ALIGN definition: we are going to drop it later.
There are few places in the code where coccinelle didn't reach. I'll
fix them manually in a separate patch. Comments and documentation also
will be addressed with the separate patch.
virtual patch
@@
expression E;
@@
- E << (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
expression E;
@@
- E >> (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
@@
- PAGE_CACHE_SHIFT
+ PAGE_SHIFT
@@
@@
- PAGE_CACHE_SIZE
+ PAGE_SIZE
@@
@@
- PAGE_CACHE_MASK
+ PAGE_MASK
@@
expression E;
@@
- PAGE_CACHE_ALIGN(E)
+ PAGE_ALIGN(E)
@@
expression E;
@@
- page_cache_get(E)
+ get_page(E)
@@
expression E;
@@
- page_cache_release(E)
+ put_page(E)
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-04-01 14:29:47 +02:00
|
|
|
put_page(dir_page);
|
2015-06-16 07:56:23 +02:00
|
|
|
}
|
2006-03-23 12:00:53 +01:00
|
|
|
inode_dec_link_count(old_dir);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
2006-06-25 14:47:22 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
out_dir:
|
2006-06-25 14:47:22 +02:00
|
|
|
if (dir_de) {
|
|
|
|
kunmap(dir_page);
|
mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros
PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time
ago with promise that one day it will be possible to implement page
cache with bigger chunks than PAGE_SIZE.
This promise never materialized. And unlikely will.
We have many places where PAGE_CACHE_SIZE assumed to be equal to
PAGE_SIZE. And it's constant source of confusion on whether
PAGE_CACHE_* or PAGE_* constant should be used in a particular case,
especially on the border between fs and mm.
Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much
breakage to be doable.
Let's stop pretending that pages in page cache are special. They are
not.
The changes are pretty straight-forward:
- <foo> << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- <foo> >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN};
- page_cache_get() -> get_page();
- page_cache_release() -> put_page();
This patch contains automated changes generated with coccinelle using
script below. For some reason, coccinelle doesn't patch header files.
I've called spatch for them manually.
The only adjustment after coccinelle is revert of changes to
PAGE_CAHCE_ALIGN definition: we are going to drop it later.
There are few places in the code where coccinelle didn't reach. I'll
fix them manually in a separate patch. Comments and documentation also
will be addressed with the separate patch.
virtual patch
@@
expression E;
@@
- E << (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
expression E;
@@
- E >> (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
@@
- PAGE_CACHE_SHIFT
+ PAGE_SHIFT
@@
@@
- PAGE_CACHE_SIZE
+ PAGE_SIZE
@@
@@
- PAGE_CACHE_MASK
+ PAGE_MASK
@@
expression E;
@@
- PAGE_CACHE_ALIGN(E)
+ PAGE_ALIGN(E)
@@
expression E;
@@
- page_cache_get(E)
+ get_page(E)
@@
expression E;
@@
- page_cache_release(E)
+ put_page(E)
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-04-01 14:29:47 +02:00
|
|
|
put_page(dir_page);
|
2006-06-25 14:47:22 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
out_old:
|
2006-06-25 14:47:22 +02:00
|
|
|
kunmap(old_page);
|
mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros
PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time
ago with promise that one day it will be possible to implement page
cache with bigger chunks than PAGE_SIZE.
This promise never materialized. And unlikely will.
We have many places where PAGE_CACHE_SIZE assumed to be equal to
PAGE_SIZE. And it's constant source of confusion on whether
PAGE_CACHE_* or PAGE_* constant should be used in a particular case,
especially on the border between fs and mm.
Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much
breakage to be doable.
Let's stop pretending that pages in page cache are special. They are
not.
The changes are pretty straight-forward:
- <foo> << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- <foo> >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN};
- page_cache_get() -> get_page();
- page_cache_release() -> put_page();
This patch contains automated changes generated with coccinelle using
script below. For some reason, coccinelle doesn't patch header files.
I've called spatch for them manually.
The only adjustment after coccinelle is revert of changes to
PAGE_CAHCE_ALIGN definition: we are going to drop it later.
There are few places in the code where coccinelle didn't reach. I'll
fix them manually in a separate patch. Comments and documentation also
will be addressed with the separate patch.
virtual patch
@@
expression E;
@@
- E << (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
expression E;
@@
- E >> (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
@@
- PAGE_CACHE_SHIFT
+ PAGE_SHIFT
@@
@@
- PAGE_CACHE_SIZE
+ PAGE_SIZE
@@
@@
- PAGE_CACHE_MASK
+ PAGE_MASK
@@
expression E;
@@
- PAGE_CACHE_ALIGN(E)
+ PAGE_ALIGN(E)
@@
expression E;
@@
- page_cache_get(E)
+ get_page(E)
@@
expression E;
@@
- page_cache_release(E)
+ put_page(E)
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-04-01 14:29:47 +02:00
|
|
|
put_page(old_page);
|
2005-04-17 00:20:36 +02:00
|
|
|
out:
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2007-02-12 09:55:40 +01:00
|
|
|
const struct inode_operations ufs_dir_inode_operations = {
|
2005-04-17 00:20:36 +02:00
|
|
|
.create = ufs_create,
|
|
|
|
.lookup = ufs_lookup,
|
|
|
|
.link = ufs_link,
|
|
|
|
.unlink = ufs_unlink,
|
|
|
|
.symlink = ufs_symlink,
|
|
|
|
.mkdir = ufs_mkdir,
|
|
|
|
.rmdir = ufs_rmdir,
|
|
|
|
.mknod = ufs_mknod,
|
|
|
|
.rename = ufs_rename,
|
|
|
|
};
|