mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-09-19 05:04:27 +00:00
ext4: Limit number of links that can be created by ext4_link()
(cherry picked from commit b05ab1dc3795e6f997fb0d34f38fce5012533c3e) In ext4_link we need to check using EXT4_LINK_MAX, and not EXT4_DIR_LINK_MAX(), since ext4_link() is creating hard links of regular files, and not directories. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
929c711219
commit
e4670b394d
@@ -2310,7 +2310,7 @@ static int ext4_link(struct dentry *old_dentry,
|
||||
struct inode *inode = old_dentry->d_inode;
|
||||
int err, retries = 0;
|
||||
|
||||
if (EXT4_DIR_LINK_MAX(inode))
|
||||
if (inode->i_nlink >= EXT4_LINK_MAX)
|
||||
return -EMLINK;
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user