Trivial comment:
> /*
> + * Superblock locking. We really ought to get rid of these two.
> + */
> +void lock_super(struct super_block * sb)
> +{
> + get_fs_excl();
> + mutex_lock(&sb->s_lock);
> +}
> +
> +void unlock_super(struct super_block * sb)
> +{
> + put_fs_excl();
> + mutex_unlock(&sb->s_lock);
> +}
> +
> +EXPORT_SYMBOL(lock_super);
> +EXPORT_SYMBOL(unlock_super);
isn't the current fashion to do this like:
void lock_super(struct super_block * sb)
{
get_fs_excl();
mutex_lock(&sb->s_lock);
}
EXPORT_SYMBOL(lock_super);
void unlock_super(struct super_block * sb)
{
put_fs_excl();
mutex_unlock(&sb->s_lock);
}
EXPORT_SYMBOL(unlock_super);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]