On Tue,  5 May 2015 06:22:25 +0100 Al Viro <v...@zeniv.linux.org.uk> wrote:

> From: Al Viro <v...@zeniv.linux.org.uk>
> 
> The only restriction is that on the total amount of symlinks
> crossed; how they are nested does not matter
> 
> Signed-off-by: Al Viro <v...@zeniv.linux.org.uk>
> ---


> -     if (unlikely(current->total_link_count >= 40)) {
> +     if (unlikely(current->total_link_count >= MAXSYMLINKS)) {

There is still a literal '40' in follow_automount.

        current->total_link_count++;
        if (current->total_link_count >= 40)
                return -ELOOP;


should that become MAXSYMLINKS too?

Thanks,
NeilBrown

Attachment: pgplzb2cYAvTG.pgp
Description: OpenPGP digital signature

Reply via email to