diff options
author | Nathan Scott <nathans@sgi.com> | 2006-06-18 18:40:27 -0400 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-06-18 18:40:27 -0400 |
commit | a805bad5daae8d4f92ce46f467484d4867e996d4 (patch) | |
tree | 60a028285061b29b4b86935dec699c918d190d5a /fs/xfs/linux-2.6 | |
parent | 6fe90e6d1451a05db37b2a582410ddcb45af3606 (diff) |
[XFS] Remove unneeded conditional code on NFS export interface related
code paths.
SGI-PV: 904196
SGI-Modid: xfs-linux-melb:xfs-kern:26250a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_super.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index b7aad3cfdfeb..7fae922d54de 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. | 2 | * Copyright (c) 2000-2006 Silicon Graphics, Inc. |
3 | * All Rights Reserved. | 3 | * All Rights Reserved. |
4 | * | 4 | * |
5 | * This program is free software; you can redistribute it and/or | 5 | * This program is free software; you can redistribute it and/or |
@@ -796,9 +796,7 @@ xfs_fs_fill_super( | |||
796 | } | 796 | } |
797 | 797 | ||
798 | sb_min_blocksize(sb, BBSIZE); | 798 | sb_min_blocksize(sb, BBSIZE); |
799 | #ifdef CONFIG_XFS_EXPORT | ||
800 | sb->s_export_op = &xfs_export_operations; | 799 | sb->s_export_op = &xfs_export_operations; |
801 | #endif | ||
802 | sb->s_qcop = &xfs_quotactl_operations; | 800 | sb->s_qcop = &xfs_quotactl_operations; |
803 | sb->s_op = &xfs_super_operations; | 801 | sb->s_op = &xfs_super_operations; |
804 | 802 | ||