imx6: disable MSI interrupts
[oweals/openwrt.git] / target / linux / generic / patches-4.9 / 141-jffs2-add-RENAME_EXCHANGE-support.patch
1 From: Felix Fietkau <nbd@nbd.name>
2 Date: Sat, 25 Apr 2015 12:41:32 +0200
3 Subject: [PATCH] jffs2: add RENAME_EXCHANGE support
4
5 Signed-off-by: Felix Fietkau <nbd@nbd.name>
6 ---
7
8 --- a/fs/jffs2/dir.c
9 +++ b/fs/jffs2/dir.c
10 @@ -781,18 +781,31 @@ static int jffs2_rename (struct inode *o
11         int ret;
12         struct jffs2_sb_info *c = JFFS2_SB_INFO(old_dir_i->i_sb);
13         struct jffs2_inode_info *victim_f = NULL;
14 +       struct inode *fst_inode = d_inode(old_dentry);
15 +       struct inode *snd_inode = d_inode(new_dentry);
16         uint8_t type;
17         uint32_t now;
18  
19 -       if (flags & ~(RENAME_NOREPLACE|RENAME_WHITEOUT))
20 +       if (flags & ~(RENAME_NOREPLACE|RENAME_WHITEOUT|RENAME_EXCHANGE))
21                 return -EINVAL;
22  
23 +       if ((flags & RENAME_EXCHANGE) && (old_dir_i != new_dir_i)) {
24 +               if (S_ISDIR(fst_inode->i_mode) && !S_ISDIR(snd_inode->i_mode)) {
25 +                       inc_nlink(new_dir_i);
26 +                       drop_nlink(old_dir_i);
27 +               }
28 +               else if (!S_ISDIR(fst_inode->i_mode) && S_ISDIR(snd_inode->i_mode)) {
29 +                       drop_nlink(new_dir_i);
30 +                       inc_nlink(old_dir_i);
31 +               }
32 +       }
33 +
34         /* The VFS will check for us and prevent trying to rename a
35          * file over a directory and vice versa, but if it's a directory,
36          * the VFS can't check whether the victim is empty. The filesystem
37          * needs to do that for itself.
38          */
39 -       if (d_really_is_positive(new_dentry)) {
40 +       if (d_really_is_positive(new_dentry) && !(flags & RENAME_EXCHANGE)) {
41                 victim_f = JFFS2_INODE_INFO(d_inode(new_dentry));
42                 if (d_is_dir(new_dentry)) {
43                         struct jffs2_full_dirent *fd;
44 @@ -827,7 +840,7 @@ static int jffs2_rename (struct inode *o
45         if (ret)
46                 return ret;
47  
48 -       if (victim_f) {
49 +       if (victim_f && !(flags & RENAME_EXCHANGE)) {
50                 /* There was a victim. Kill it off nicely */
51                 if (d_is_dir(new_dentry))
52                         clear_nlink(d_inode(new_dentry));
53 @@ -853,6 +866,12 @@ static int jffs2_rename (struct inode *o
54         if (flags & RENAME_WHITEOUT)
55                 /* Replace with whiteout */
56                 ret = jffs2_whiteout(old_dir_i, old_dentry);
57 +       else if (flags & RENAME_EXCHANGE)
58 +               /* Replace the original */
59 +               ret = jffs2_do_link(c, JFFS2_INODE_INFO(old_dir_i),
60 +                                   d_inode(new_dentry)->i_ino, type,
61 +                                   old_dentry->d_name.name, old_dentry->d_name.len,
62 +                                   now);
63         else
64                 /* Unlink the original */
65                 ret = jffs2_do_unlink(c, JFFS2_INODE_INFO(old_dir_i),
66 @@ -884,7 +903,7 @@ static int jffs2_rename (struct inode *o
67                 return ret;
68         }
69  
70 -       if (d_is_dir(old_dentry))
71 +       if (d_is_dir(old_dentry) && !(flags & RENAME_EXCHANGE))
72                 drop_nlink(old_dir_i);
73  
74         new_dir_i->i_mtime = new_dir_i->i_ctime = old_dir_i->i_mtime = old_dir_i->i_ctime = ITIME(now);