Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
OpenBMC Firmware
talos-obmc-linux
Commits
0f3278d1
Commit
0f3278d1
authored
19 years ago
by
Linus Torvalds
Browse files
Options
Download
Plain Diff
Merge
git://oss.sgi.com:8090/oss/git/xfs-2.6
parents
06024f21
15c84a47
Changes
178
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
390 additions
and
637 deletions
+390
-637
Documentation/filesystems/xfs.txt
Documentation/filesystems/xfs.txt
+108
-34
fs/quota.c
fs/quota.c
+7
-1
fs/xfs/Kconfig
fs/xfs/Kconfig
+1
-1
fs/xfs/Makefile-linux-2.6
fs/xfs/Makefile-linux-2.6
+0
-1
fs/xfs/linux-2.6/kmem.c
fs/xfs/linux-2.6/kmem.c
+11
-28
fs/xfs/linux-2.6/kmem.h
fs/xfs/linux-2.6/kmem.h
+19
-33
fs/xfs/linux-2.6/mrlock.h
fs/xfs/linux-2.6/mrlock.h
+11
-25
fs/xfs/linux-2.6/mutex.h
fs/xfs/linux-2.6/mutex.h
+11
-25
fs/xfs/linux-2.6/sema.h
fs/xfs/linux-2.6/sema.h
+11
-25
fs/xfs/linux-2.6/spin.h
fs/xfs/linux-2.6/spin.h
+11
-25
fs/xfs/linux-2.6/sv.h
fs/xfs/linux-2.6/sv.h
+11
-25
fs/xfs/linux-2.6/time.h
fs/xfs/linux-2.6/time.h
+11
-25
fs/xfs/linux-2.6/xfs_aops.c
fs/xfs/linux-2.6/xfs_aops.c
+36
-44
fs/xfs/linux-2.6/xfs_aops.h
fs/xfs/linux-2.6/xfs_aops.h
+11
-25
fs/xfs/linux-2.6/xfs_buf.c
fs/xfs/linux-2.6/xfs_buf.c
+58
-160
fs/xfs/linux-2.6/xfs_buf.h
fs/xfs/linux-2.6/xfs_buf.h
+22
-51
fs/xfs/linux-2.6/xfs_cred.h
fs/xfs/linux-2.6/xfs_cred.h
+11
-25
fs/xfs/linux-2.6/xfs_export.c
fs/xfs/linux-2.6/xfs_export.c
+15
-32
fs/xfs/linux-2.6/xfs_export.h
fs/xfs/linux-2.6/xfs_export.h
+11
-25
fs/xfs/linux-2.6/xfs_file.c
fs/xfs/linux-2.6/xfs_file.c
+14
-27
No files found.
Documentation/filesystems/xfs.txt
View file @
0f3278d1
...
...
@@ -19,15 +19,43 @@ Mount Options
When mounting an XFS filesystem, the following options are accepted.
biosize=size
Sets the preferred buffered I/O size (default size is 64K).
"size" must be expressed as the logarithm (base2) of the
desired I/O size.
Valid values for this option are 14 through 16, inclusive
(i.e. 16K, 32K, and 64K bytes). On machines with a 4K
pagesize, 13 (8K bytes) is also a valid size.
The preferred buffered I/O size can also be altered on an
individual file basis using the ioctl(2) system call.
allocsize=size
Sets the buffered I/O end-of-file preallocation size when
doing delayed allocation writeout (default size is 64KiB).
Valid values for this option are page size (typically 4KiB)
through to 1GiB, inclusive, in power-of-2 increments.
attr2/noattr2
The options enable/disable (default is disabled for backward
compatibility on-disk) an "opportunistic" improvement to be
made in the way inline extended attributes are stored on-disk.
When the new form is used for the first time (by setting or
removing extended attributes) the on-disk superblock feature
bit field will be updated to reflect this format being in use.
barrier
Enables the use of block layer write barriers for writes into
the journal and unwritten extent conversion. This allows for
drive level write caching to be enabled, for devices that
support write barriers.
dmapi
Enable the DMAPI (Data Management API) event callouts.
Use with the "mtpt" option.
grpid/bsdgroups and nogrpid/sysvgroups
These options define what group ID a newly created file gets.
When grpid is set, it takes the group ID of the directory in
which it is created; otherwise (the default) it takes the fsgid
of the current process, unless the directory has the setgid bit
set, in which case it takes the gid from the parent directory,
and also gets the setgid bit set if it is a directory itself.
ihashsize=value
Sets the number of hash buckets available for hashing the
in-memory inodes of the specified mount point. If a value
of zero is used, the value selected by the default algorithm
will be displayed in /proc/mounts.
ikeep/noikeep
When inode clusters are emptied of inodes, keep them around
...
...
@@ -35,12 +63,31 @@ When mounting an XFS filesystem, the following options are accepted.
and is still the default for now. Using the noikeep option,
inode clusters are returned to the free space pool.
inode64
Indicates that XFS is allowed to create inodes at any location
in the filesystem, including those which will result in inode
numbers occupying more than 32 bits of significance. This is
provided for backwards compatibility, but causes problems for
backup applications that cannot handle large inode numbers.
largeio/nolargeio
If "nolargeio" is specified, the optimal I/O reported in
st_blksize by stat(2) will be as small as possible to allow user
applications to avoid inefficient read/modify/write I/O.
If "largeio" specified, a filesystem that has a "swidth" specified
will return the "swidth" value (in bytes) in st_blksize. If the
filesystem does not have a "swidth" specified but does specify
an "allocsize" then "allocsize" (in bytes) will be returned
instead.
If neither of these two options are specified, then filesystem
will behave as if "nolargeio" was specified.
logbufs=value
Set the number of in-memory log buffers. Valid numbers range
from 2-8 inclusive.
The default value is 8 buffers for filesystems with a
blocksize of 64K, 4 buffers for filesystems with a blocksize
of 32K, 3 buffers for filesystems with a blocksize of 16K
blocksize of 64K
iB
, 4 buffers for filesystems with a blocksize
of 32K
iB
, 3 buffers for filesystems with a blocksize of 16K
iB
and 2 buffers for all other configurations. Increasing the
number of buffers may increase performance on some workloads
at the cost of the memory used for the additional log buffers
...
...
@@ -49,10 +96,10 @@ When mounting an XFS filesystem, the following options are accepted.
logbsize=value
Set the size of each in-memory log buffer.
Size may be specified in bytes, or in kilobytes with a "k" suffix.
Valid sizes for version 1 and version 2 logs are 16384 (16k) and
32768 (32k). Valid sizes for version 2 logs also include
Valid sizes for version 1 and version 2 logs are 16384 (16k) and
32768 (32k). Valid sizes for version 2 logs also include
65536 (64k), 131072 (128k) and 262144 (256k).
The default value for machines with more than 32MB of memory
The default value for machines with more than 32M
i
B of memory
is 32768, machines with less memory use 16384 by default.
logdev=device and rtdev=device
...
...
@@ -62,6 +109,11 @@ When mounting an XFS filesystem, the following options are accepted.
optional, and the log section can be separate from the data
section or contained within it.
mtpt=mountpoint
Use with the "dmapi" option. The value specified here will be
included in the DMAPI mount event, and should be the path of
the actual mountpoint that is used.
noalign
Data allocations will not be aligned at stripe unit boundaries.
...
...
@@ -91,13 +143,17 @@ When mounting an XFS filesystem, the following options are accepted.
O_SYNC writes can be lost if the system crashes.
If timestamp updates are critical, use the osyncisosync option.
quota/usrquota/uqnoenforce
u
quota/usrquota/uqnoenforce
/quota
User disk quota accounting enabled, and limits (optionally)
enforced.
enforced.
Refer to xfs_quota(8) for further details.
grpquota/gqnoenforce
gquota/
grpquota/gqnoenforce
Group disk quota accounting enabled and limits (optionally)
enforced.
enforced. Refer to xfs_quota(8) for further details.
pquota/prjquota/pqnoenforce
Project disk quota accounting enabled and limits (optionally)
enforced. Refer to xfs_quota(8) for further details.
sunit=value and swidth=value
Used to specify the stripe unit and width for a RAID device or
...
...
@@ -113,15 +169,21 @@ When mounting an XFS filesystem, the following options are accepted.
The "swidth" option is required if the "sunit" option has been
specified, and must be a multiple of the "sunit" value.
swalloc
Data allocations will be rounded up to stripe width boundaries
when the current end of file is being extended and the file
size is larger than the stripe width size.
sysctls
=======
The following sysctls are available for the XFS filesystem:
fs.xfs.stats_clear (Min: 0 Default: 0 Max: 1)
Setting this to "1" clears accumulated XFS statistics
Setting this to "1" clears accumulated XFS statistics
in /proc/fs/xfs/stat. It then immediately resets to "0".
fs.xfs.xfssyncd_centisecs (Min: 100 Default: 3000 Max: 720000)
The interval at which the xfssyncd thread flushes metadata
out to disk. This thread will flush log activity out, and
...
...
@@ -143,9 +205,9 @@ The following sysctls are available for the XFS filesystem:
XFS_ERRLEVEL_HIGH: 5
fs.xfs.panic_mask (Min: 0 Default: 0 Max: 127)
Causes certain error conditions to call BUG(). Value is a bitmask;
Causes certain error conditions to call BUG(). Value is a bitmask;
AND together the tags which represent errors which should cause panics:
XFS_NO_PTAG 0
XFS_PTAG_IFLUSH 0x00000001
XFS_PTAG_LOGRES 0x00000002
...
...
@@ -155,7 +217,7 @@ The following sysctls are available for the XFS filesystem:
XFS_PTAG_SHUTDOWN_IOERROR 0x00000020
XFS_PTAG_SHUTDOWN_LOGERROR 0x00000040
This option is intended for debugging only.
This option is intended for debugging only.
fs.xfs.irix_symlink_mode (Min: 0 Default: 0 Max: 1)
Controls whether symlinks are created with mode 0777 (default)
...
...
@@ -164,25 +226,37 @@ The following sysctls are available for the XFS filesystem:
fs.xfs.irix_sgid_inherit (Min: 0 Default: 0 Max: 1)
Controls files created in SGID directories.
If the group ID of the new file does not match the effective group
ID or one of the supplementary group IDs of the parent dir, the
ISGID bit is cleared if the irix_sgid_inherit compatibility sysctl
ID or one of the supplementary group IDs of the parent dir, the
ISGID bit is cleared if the irix_sgid_inherit compatibility sysctl
is set.
fs.xfs.restrict_chown (Min: 0 Default: 1 Max: 1)
Controls whether unprivileged users can use chown to "give away"
a file to another user.
fs.xfs.inherit_sync (Min: 0 Default: 1 Max 1)
Setting this to "1" will cause the "sync" flag set
by the chattr
(1)
command on a directory to be
fs.xfs.inherit_sync (Min: 0 Default: 1 Max
:
1)
Setting this to "1" will cause the "sync" flag set
by the
xfs_io(8)
chattr command on a directory to be
inherited by files in that directory.
fs.xfs.inherit_nodump (Min: 0 Default: 1 Max 1)
Setting this to "1" will cause the "nodump" flag set
by the chattr
(1)
command on a directory to be
fs.xfs.inherit_nodump (Min: 0 Default: 1 Max
:
1)
Setting this to "1" will cause the "nodump" flag set
by the
xfs_io(8)
chattr command on a directory to be
inherited by files in that directory.
fs.xfs.inherit_noatime (Min: 0 Default: 1 Max 1)
Setting this to "1" will cause the "noatime" flag set
by the chattr
(1)
command on a directory to be
fs.xfs.inherit_noatime (Min: 0 Default: 1 Max
:
1)
Setting this to "1" will cause the "noatime" flag set
by the
xfs_io(8)
chattr command on a directory to be
inherited by files in that directory.
fs.xfs.inherit_nosymlinks (Min: 0 Default: 1 Max: 1)
Setting this to "1" will cause the "nosymlinks" flag set
by the xfs_io(8) chattr command on a directory to be
inherited by files in that directory.
fs.xfs.rotorstep (Min: 1 Default: 1 Max: 256)
In "inode32" allocation mode, this option determines how many
files the allocator attempts to allocate in the same allocation
group before moving to the next allocation group. The intent
is to control the rate at which the allocator moves between
allocation groups when allocating extents for new files.
This diff is collapsed.
Click to expand it.
fs/quota.c
View file @
0f3278d1
...
...
@@ -118,6 +118,10 @@ static int xqm_quotactl_valid(struct super_block *sb, int type, int cmd, qid_t i
if
(
!
sb
->
s_qcop
->
get_xquota
)
return
-
ENOSYS
;
break
;
case
Q_XQUOTASYNC
:
if
(
!
sb
->
s_qcop
->
quota_sync
)
return
-
ENOSYS
;
break
;
default:
return
-
EINVAL
;
}
...
...
@@ -128,7 +132,7 @@ static int xqm_quotactl_valid(struct super_block *sb, int type, int cmd, qid_t i
(
type
==
XQM_GRPQUOTA
&&
!
in_egroup_p
(
id
)))
&&
!
capable
(
CAP_SYS_ADMIN
))
return
-
EPERM
;
}
else
if
(
cmd
!=
Q_XGETQSTAT
)
{
}
else
if
(
cmd
!=
Q_XGETQSTAT
&&
cmd
!=
Q_XQUOTASYNC
)
{
if
(
!
capable
(
CAP_SYS_ADMIN
))
return
-
EPERM
;
}
...
...
@@ -322,6 +326,8 @@ static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id, void
return
-
EFAULT
;
return
0
;
}
case
Q_XQUOTASYNC
:
return
sb
->
s_qcop
->
quota_sync
(
sb
,
type
);
/* We never reach here unless validity check is broken */
default:
BUG
();
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/Kconfig
View file @
0f3278d1
...
...
@@ -24,7 +24,7 @@ config XFS_EXPORT
default y
config XFS_QUOTA
tristate
"XFS Quota support"
bool
"XFS Quota support"
depends on XFS_FS
help
If you say Y here, you will be able to set limits for disk usage on
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/Makefile-linux-2.6
View file @
0f3278d1
...
...
@@ -109,7 +109,6 @@ xfs-y += xfs_alloc.o \
xfs_dfrag.o \
xfs_log.o \
xfs_log_recover.o \
xfs_macros.o \
xfs_mount.o \
xfs_rename.o \
xfs_trans.o \
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/kmem.c
View file @
0f3278d1
/*
* Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/vmalloc.h>
#include <linux/highmem.h>
#include <linux/swap.h>
#include <linux/blkdev.h>
#include "time.h"
#include "kmem.h"
#define MAX_VMALLOCS 6
#define MAX_SLAB_SIZE 0x20000
void
*
kmem_alloc
(
size_t
size
,
unsigned
int
__nocast
flags
)
{
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/kmem.h
View file @
0f3278d1
/*
* Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __XFS_SUPPORT_KMEM_H__
#define __XFS_SUPPORT_KMEM_H__
...
...
@@ -83,7 +69,7 @@ typedef unsigned long xfs_pflags_t;
static
__inline
gfp_t
kmem_flags_convert
(
unsigned
int
__nocast
flags
)
{
gfp_t
lflags
=
__GFP_NOWARN
;
/* we'll report problems, if need be */
gfp_t
lflags
=
__GFP_NOWARN
;
/* we'll report problems, if need be */
#ifdef DEBUG
if
(
unlikely
(
flags
&
~
(
KM_SLEEP
|
KM_NOSLEEP
|
KM_NOFS
|
KM_MAYFAIL
)))
{
...
...
@@ -102,7 +88,7 @@ static __inline gfp_t kmem_flags_convert(unsigned int __nocast flags)
if
(
PFLAGS_TEST_FSTRANS
()
||
(
flags
&
KM_NOFS
))
lflags
&=
~
__GFP_FS
;
}
return
lflags
;
}
...
...
@@ -125,13 +111,13 @@ kmem_zone_destroy(kmem_zone_t *zone)
BUG
();
}
extern
void
*
kmem_zone_zalloc
(
kmem_zone_t
*
,
unsigned
int
__nocast
);
extern
void
*
kmem_zone_alloc
(
kmem_zone_t
*
,
unsigned
int
__nocast
);
extern
void
*
kmem_zone_zalloc
(
kmem_zone_t
*
,
unsigned
int
__nocast
);
extern
void
*
kmem_zone_alloc
(
kmem_zone_t
*
,
unsigned
int
__nocast
);
extern
void
*
kmem_alloc
(
size_t
,
unsigned
int
__nocast
);
extern
void
*
kmem_realloc
(
void
*
,
size_t
,
size_t
,
unsigned
int
__nocast
);
extern
void
*
kmem_zalloc
(
size_t
,
unsigned
int
__nocast
);
extern
void
kmem_free
(
void
*
,
size_t
);
extern
void
*
kmem_alloc
(
size_t
,
unsigned
int
__nocast
);
extern
void
*
kmem_realloc
(
void
*
,
size_t
,
size_t
,
unsigned
int
__nocast
);
extern
void
*
kmem_zalloc
(
size_t
,
unsigned
int
__nocast
);
extern
void
kmem_free
(
void
*
,
size_t
);
typedef
struct
shrinker
*
kmem_shaker_t
;
typedef
int
(
*
kmem_shake_func_t
)(
int
,
gfp_t
);
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/mrlock.h
View file @
0f3278d1
/*
* Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __XFS_SUPPORT_MRLOCK_H__
#define __XFS_SUPPORT_MRLOCK_H__
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/mutex.h
View file @
0f3278d1
/*
* Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __XFS_SUPPORT_MUTEX_H__
#define __XFS_SUPPORT_MUTEX_H__
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/sema.h
View file @
0f3278d1
/*
* Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __XFS_SUPPORT_SEMA_H__
#define __XFS_SUPPORT_SEMA_H__
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/spin.h
View file @
0f3278d1
/*
* Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __XFS_SUPPORT_SPIN_H__
#define __XFS_SUPPORT_SPIN_H__
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/sv.h
View file @
0f3278d1
/*
* Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __XFS_SUPPORT_SV_H__
#define __XFS_SUPPORT_SV_H__
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/time.h
View file @
0f3278d1
/*
* Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __XFS_SUPPORT_TIME_H__
#define __XFS_SUPPORT_TIME_H__
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/xfs_aops.c
View file @
0f3278d1
/*
* Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "xfs.h"
#include "xfs_
inum
.h"
#include "xfs_
bit
.h"
#include "xfs_log.h"
#include "xfs_inum.h"
#include "xfs_sb.h"
#include "xfs_ag.h"
#include "xfs_dir.h"
#include "xfs_dir2.h"
#include "xfs_trans.h"
...
...
@@ -42,13 +29,13 @@
#include "xfs_bmap_btree.h"
#include "xfs_alloc_btree.h"
#include "xfs_ialloc_btree.h"
#include "xfs_alloc.h"
#include "xfs_btree.h"
#include "xfs_attr_sf.h"
#include "xfs_dir_sf.h"
#include "xfs_dir2_sf.h"
#include "xfs_attr_sf.h"
#include "xfs_dinode.h"
#include "xfs_inode.h"
#include "xfs_alloc.h"
#include "xfs_btree.h"
#include "xfs_error.h"
#include "xfs_rw.h"
#include "xfs_iomap.h"
...
...
@@ -761,8 +748,9 @@ xfs_page_state_convert(
if
(
page
->
index
>=
end_index
)
{
if
((
page
->
index
>=
end_index
+
1
)
||
!
(
i_size_read
(
inode
)
&
(
PAGE_CACHE_SIZE
-
1
)))
{
err
=
-
EIO
;
goto
error
;
if
(
startio
)
unlock_page
(
page
);
return
0
;
}
}
...
...
@@ -948,15 +936,18 @@ __linvfs_get_block(
{
vnode_t
*
vp
=
LINVFS_GET_VP
(
inode
);
xfs_iomap_t
iomap
;
xfs_off_t
offset
;
ssize_t
size
;
int
retpbbm
=
1
;
int
error
;
ssize_t
size
;
loff_t
offset
=
(
loff_t
)
iblock
<<
inode
->
i_blkbits
;
if
(
blocks
)
size
=
blocks
<<
inode
->
i_blkbits
;
else
if
(
blocks
)
{
offset
=
blocks
<<
inode
->
i_blkbits
;
/* 64 bit goodness */
size
=
(
ssize_t
)
min_t
(
xfs_off_t
,
offset
,
LONG_MAX
);
}
else
{
size
=
1
<<
inode
->
i_blkbits
;
}
offset
=
(
xfs_off_t
)
iblock
<<
inode
->
i_blkbits
;
VOP_BMAP
(
vp
,
offset
,
size
,
create
?
flags
:
BMAPI_READ
,
&
iomap
,
&
retpbbm
,
error
);
...
...
@@ -967,8 +958,8 @@ __linvfs_get_block(
return
0
;
if
(
iomap
.
iomap_bn
!=
IOMAP_DADDR_NULL
)
{
xfs_daddr_t
bn
;
l
off_t
delta
;
xfs_daddr_t
bn
;
xfs_
off_t
delta
;
/* For unwritten extents do not report a disk address on
* the read case (treat as if we're reading into a hole).
...
...
@@ -1000,9 +991,8 @@ __linvfs_get_block(
*/
if
(
create
&&
((
!
buffer_mapped
(
bh_result
)
&&
!
buffer_uptodate
(
bh_result
))
||
(
offset
>=
i_size_read
(
inode
))
||
(
iomap
.
iomap_flags
&
IOMAP_NEW
)))
{
(
offset
>=
i_size_read
(
inode
))
||
(
iomap
.
iomap_flags
&
IOMAP_NEW
)))
set_buffer_new
(
bh_result
);
}
if
(
iomap
.
iomap_flags
&
IOMAP_DELAY
)
{
BUG_ON
(
direct
);
...
...
@@ -1014,9 +1004,11 @@ __linvfs_get_block(
}
if
(
blocks
)
{
bh_result
->
b_size
=
(
ssize_t
)
min
(
(
loff_t
)(
iomap
.
iomap_bsize
-
iomap
.
iomap_delta
),
(
loff_t
)(
blocks
<<
inode
->
i_blkbits
));
ASSERT
(
iomap
.
iomap_bsize
-
iomap
.
iomap_delta
>
0
);
offset
=
min_t
(
xfs_off_t
,
iomap
.
iomap_bsize
-
iomap
.
iomap_delta
,
blocks
<<
inode
->
i_blkbits
);
bh_result
->
b_size
=
(
u32
)
min_t
(
xfs_off_t
,
UINT_MAX
,
offset
);
}
return
0
;
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/xfs_aops.h
View file @
0f3278d1
/*
* Copyright (c) 2005 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __XFS_AOPS_H__
#define __XFS_AOPS_H__
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/xfs_buf.c
View file @
0f3278d1
/*
* Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
*/
/*
* The xfs_buf.c code provides an abstract buffer cache model on top
* of the Linux page cache. Cached metadata blocks for a file system
* are hashed to the inode for the block device. xfs_buf.c assembles
* buffers (xfs_buf_t) on demand to aggregate such cached pages for I/O.
*
* Written by Steve Lord, Jim Mostek, Russell Cattelan
* and Rajagopal Ananthanarayanan ("ananth") at SGI.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <linux/stddef.h>
#include <linux/errno.h>
#include <linux/slab.h>
...
...
@@ -55,13 +29,8 @@
#include <linux/blkdev.h>
#include <linux/hash.h>
#include <linux/kthread.h>
#include "xfs_linux.h"
/*
* File wide globals
*/
STATIC
kmem_cache_t
*
pagebuf_zone
;
STATIC
kmem_shaker_t
pagebuf_shake
;
STATIC
int
xfsbufd_wakeup
(
int
,
gfp_t
);
...
...
@@ -70,10 +39,6 @@ STATIC void pagebuf_delwri_queue(xfs_buf_t *, int);
STATIC
struct
workqueue_struct
*
xfslogd_workqueue
;
struct
workqueue_struct
*
xfsdatad_workqueue
;
/*
* Pagebuf debugging
*/
#ifdef PAGEBUF_TRACE
void
pagebuf_trace
(
...
...
@@ -112,10 +77,6 @@ ktrace_t *pagebuf_trace_buf;
# define PB_GET_OWNER(pb) do { } while (0)
#endif
/*
* Pagebuf allocation / freeing.
*/
#define pb_to_gfp(flags) \
((((flags) & PBF_READ_AHEAD) ? __GFP_NORETRY : \
((flags) & PBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN)
...
...
@@ -123,7 +84,6 @@ ktrace_t *pagebuf_trace_buf;
#define pb_to_km(flags) \
(((flags) & PBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP)
#define pagebuf_allocate(flags) \
kmem_zone_alloc(pagebuf_zone, pb_to_km(flags))
#define pagebuf_deallocate(pb) \
...
...
@@ -286,7 +246,7 @@ _pagebuf_initialize(
* most cases but may be reset (e.g. XFS recovery).
*/
pb
->
pb_buffer_length
=
pb
->
pb_count_desired
=
range_length
;
pb
->
pb_flags
=
flags
|
PBF_NONE
;
pb
->
pb_flags
=
flags
;
pb
->
pb_bn
=
XFS_BUF_DADDR_NULL
;
atomic_set
(
&
pb
->
pb_pin_count
,
0
);
init_waitqueue_head
(
&
pb
->
pb_waiters
);
...
...
@@ -458,14 +418,8 @@ _pagebuf_lookup_pages(
unlock_page
(
bp
->
pb_pages
[
i
]);
}
if
(
page_count
)
{
/* if we have any uptodate pages, mark that in the buffer */
bp
->
pb_flags
&=
~
PBF_NONE
;
/* if some pages aren't uptodate, mark that in the buffer */
if
(
page_count
!=
bp
->
pb_page_count
)
bp
->
pb_flags
|=
PBF_PARTIAL
;
}
if
(
page_count
==
bp
->
pb_page_count
)
bp
->
pb_flags
|=
PBF_DONE
;
PB_TRACE
(
bp
,
"lookup_pages"
,
(
long
)
page_count
);
return
error
;
...
...
@@ -676,7 +630,7 @@ xfs_buf_read_flags(
pb
=
xfs_buf_get_flags
(
target
,
ioff
,
isize
,
flags
);
if
(
pb
)
{
if
(
PBF_NOT_
DONE
(
pb
))
{
if
(
!
XFS_BUF_IS
DONE
(
pb
))
{
PB_TRACE
(
pb
,
"read"
,
(
unsigned
long
)
flags
);
XFS_STATS_INC
(
pb_get_read
);
pagebuf_iostart
(
pb
,
flags
);
...
...
@@ -813,7 +767,7 @@ pagebuf_get_no_daddr(
bp
=
pagebuf_allocate
(
0
);
if
(
unlikely
(
bp
==
NULL
))
goto
fail
;
_pagebuf_initialize
(
bp
,
target
,
0
,
len
,
PBF_FORCEIO
);
_pagebuf_initialize
(
bp
,
target
,
0
,
len
,
0
);
try_again:
data
=
kmem_alloc
(
malloc_len
,
KM_SLEEP
|
KM_MAYFAIL
);
...
...
@@ -876,39 +830,18 @@ pagebuf_rele(
PB_TRACE
(
pb
,
"rele"
,
pb
->
pb_relse
);
/*
* pagebuf_lookup buffers are not hashed, not delayed write,
* and don't have their own release routines. Special case.
*/
if
(
unlikely
(
!
hash
))
{
ASSERT
(
!
pb
->
pb_relse
);
if
(
atomic_dec_and_test
(
&
pb
->
pb_hold
))
xfs_buf_free
(
pb
);
return
;
}
if
(
atomic_dec_and_lock
(
&
pb
->
pb_hold
,
&
hash
->
bh_lock
))
{
int
do_free
=
1
;
if
(
pb
->
pb_relse
)
{
atomic_inc
(
&
pb
->
pb_hold
);
spin_unlock
(
&
hash
->
bh_lock
);
(
*
(
pb
->
pb_relse
))
(
pb
);
spin_lock
(
&
hash
->
bh_lock
);
do_free
=
0
;
}
if
(
pb
->
pb_flags
&
PBF_FS_MANAGED
)
{
do_free
=
0
;
}
if
(
do_free
)
{
ASSERT
((
pb
->
pb_flags
&
(
PBF_DELWRI
|
_PBF_DELWRI_Q
))
==
0
);
list_del_init
(
&
pb
->
pb_hash_list
);
}
else
if
(
pb
->
pb_flags
&
PBF_FS_MANAGED
)
{
spin_unlock
(
&
hash
->
bh_lock
);
pagebuf_free
(
pb
);
}
else
{
ASSERT
(
!
(
pb
->
pb_flags
&
(
PBF_DELWRI
|
_PBF_DELWRI_Q
)));
list_del_init
(
&
pb
->
pb_hash_list
);
spin_unlock
(
&
hash
->
bh_lock
);
pagebuf_free
(
pb
);
}
}
else
{
/*
...
...
@@ -1121,21 +1054,18 @@ pagebuf_iodone_work(
void
pagebuf_iodone
(
xfs_buf_t
*
pb
,
int
dataio
,
int
schedule
)
{
pb
->
pb_flags
&=
~
(
PBF_READ
|
PBF_WRITE
);
if
(
pb
->
pb_error
==
0
)
{
pb
->
pb_flags
&=
~
(
PBF_PARTIAL
|
PBF_NONE
);
}
if
(
pb
->
pb_error
==
0
)
pb
->
pb_flags
|=
PBF_DONE
;
PB_TRACE
(
pb
,
"iodone"
,
pb
->
pb_iodone
);
if
((
pb
->
pb_iodone
)
||
(
pb
->
pb_flags
&
PBF_ASYNC
))
{
if
(
schedule
)
{
INIT_WORK
(
&
pb
->
pb_iodone_work
,
pagebuf_iodone_work
,
pb
);
queue_work
(
dataio
?
xfsdatad_workqueue
:
xfslogd_workqueue
,
&
pb
->
pb_iodone_work
);
queue_work
(
xfslogd_workqueue
,
&
pb
->
pb_iodone_work
);
}
else
{
pagebuf_iodone_work
(
pb
);
}
...
...
@@ -1235,7 +1165,7 @@ _pagebuf_iodone(
{
if
(
atomic_dec_and_test
(
&
pb
->
pb_io_remaining
)
==
1
)
{
pb
->
pb_locked
=
0
;
pagebuf_iodone
(
pb
,
(
pb
->
pb_flags
&
PBF_FS_DATAIOD
),
schedule
);
pagebuf_iodone
(
pb
,
schedule
);
}
}
...
...
@@ -1304,6 +1234,11 @@ _pagebuf_ioapply(
rw
=
(
pb
->
pb_flags
&
PBF_READ
)
?
READ
:
WRITE
;
}
if
(
pb
->
pb_flags
&
PBF_ORDERED
)
{
ASSERT
(
!
(
pb
->
pb_flags
&
PBF_READ
));
rw
=
WRITE_BARRIER
;
}
/* Special code path for reading a sub page size pagebuf in --
* we populate up the whole page, and hence the other metadata
* in the same page. This optimization is only valid when the
...
...
@@ -1750,8 +1685,8 @@ STATIC int xfsbufd_force_sleep;
STATIC
int
xfsbufd_wakeup
(
int
priority
,
gfp_t
mask
)
int
priority
,
gfp_t
mask
)
{
if
(
xfsbufd_force_sleep
)
return
0
;
...
...
@@ -1781,8 +1716,8 @@ xfsbufd(
xfsbufd_force_sleep
=
0
;
}
schedule_timeout_interruptible
(
xfs_buf_timer_centisecs
*
msecs_to_jiffies
(
10
));
schedule_timeout_interruptible
(
xfs_buf_timer_centisecs
*
msecs_to_jiffies
(
10
));
age
=
xfs_buf_age_centisecs
*
msecs_to_jiffies
(
10
);
spin_lock
(
&
pbd_delwrite_lock
);
...
...
@@ -1891,14 +1826,22 @@ xfs_flush_buftarg(
return
pincount
;
}
STATIC
int
xfs_buf_daemons_star
t
(
void
)
int
__
in
i
t
pagebuf_ini
t
(
void
)
{
int
error
=
-
ENOMEM
;
#ifdef PAGEBUF_TRACE
pagebuf_trace_buf
=
ktrace_alloc
(
PAGEBUF_TRACE_SIZE
,
KM_SLEEP
);
#endif
pagebuf_zone
=
kmem_zone_init
(
sizeof
(
xfs_buf_t
),
"xfs_buf"
);
if
(
!
pagebuf_zone
)
goto
out_free_trace_buf
;
xfslogd_workqueue
=
create_workqueue
(
"xfslogd"
);
if
(
!
xfslogd_workqueue
)
goto
out
;
goto
out
_free_buf_zone
;
xfsdatad_workqueue
=
create_workqueue
(
"xfsdatad"
);
if
(
!
xfsdatad_workqueue
)
...
...
@@ -1909,82 +1852,37 @@ xfs_buf_daemons_start(void)
error
=
PTR_ERR
(
xfsbufd_task
);
goto
out_destroy_xfsdatad_workqueue
;
}
pagebuf_shake
=
kmem_shake_register
(
xfsbufd_wakeup
);
if
(
!
pagebuf_shake
)
goto
out_stop_xfsbufd
;
return
0
;
out_stop_xfsbufd:
kthread_stop
(
xfsbufd_task
);
out_destroy_xfsdatad_workqueue:
destroy_workqueue
(
xfsdatad_workqueue
);
out_destroy_xfslogd_workqueue:
destroy_workqueue
(
xfslogd_workqueue
);
out:
return
error
;
}
/*
* Note: do not mark as __exit, it is called from pagebuf_terminate.
*/
STATIC
void
xfs_buf_daemons_stop
(
void
)
{
kthread_stop
(
xfsbufd_task
);
destroy_workqueue
(
xfslogd_workqueue
);
destroy_workqueue
(
xfsdatad_workqueue
);
}
/*
* Initialization and Termination
*/
int
__init
pagebuf_init
(
void
)
{
int
error
=
-
ENOMEM
;
pagebuf_zone
=
kmem_zone_init
(
sizeof
(
xfs_buf_t
),
"xfs_buf"
);
if
(
!
pagebuf_zone
)
goto
out
;
#ifdef PAGEBUF_TRACE
pagebuf_trace_buf
=
ktrace_alloc
(
PAGEBUF_TRACE_SIZE
,
KM_SLEEP
);
#endif
error
=
xfs_buf_daemons_start
();
if
(
error
)
goto
out_free_buf_zone
;
pagebuf_shake
=
kmem_shake_register
(
xfsbufd_wakeup
);
if
(
!
pagebuf_shake
)
{
error
=
-
ENOMEM
;
goto
out_stop_daemons
;
}
return
0
;
out_stop_daemons:
xfs_buf_daemons_stop
();
out_free_buf_zone:
kmem_zone_destroy
(
pagebuf_zone
);
out_free_trace_buf:
#ifdef PAGEBUF_TRACE
ktrace_free
(
pagebuf_trace_buf
);
#endif
kmem_zone_destroy
(
pagebuf_zone
);
out:
return
error
;
}
/*
* pagebuf_terminate.
*
* Note: do not mark as __exit, this is also called from the __init code.
*/
void
pagebuf_terminate
(
void
)
{
xfs_buf_daemons_stop
();
kmem_shake_deregister
(
pagebuf_shake
);
kthread_stop
(
xfsbufd_task
);
destroy_workqueue
(
xfsdatad_workqueue
);
destroy_workqueue
(
xfslogd_workqueue
);
kmem_zone_destroy
(
pagebuf_zone
);
#ifdef PAGEBUF_TRACE
ktrace_free
(
pagebuf_trace_buf
);
#endif
kmem_zone_destroy
(
pagebuf_zone
);
kmem_shake_deregister
(
pagebuf_shake
);
}
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/xfs_buf.h
View file @
0f3278d1
/*
* Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* Written by Steve Lord, Jim Mostek, Russell Cattelan at SGI
*/
#ifndef __XFS_BUF_H__
#define __XFS_BUF_H__
...
...
@@ -69,15 +50,12 @@ typedef enum page_buf_flags_e { /* pb_flags values */
PBF_READ
=
(
1
<<
0
),
/* buffer intended for reading from device */
PBF_WRITE
=
(
1
<<
1
),
/* buffer intended for writing to device */
PBF_MAPPED
=
(
1
<<
2
),
/* buffer mapped (pb_addr valid) */
PBF_PARTIAL
=
(
1
<<
3
),
/* buffer partially read */
PBF_ASYNC
=
(
1
<<
4
),
/* initiator will not wait for completion */
PBF_
N
ONE
=
(
1
<<
5
),
/*
buffer not read at all
*/
PBF_
D
ONE
=
(
1
<<
5
),
/*
all pages in the buffer uptodate
*/
PBF_DELWRI
=
(
1
<<
6
),
/* buffer has dirty pages */
PBF_STALE
=
(
1
<<
7
),
/* buffer has been staled, do not find it */
PBF_FS_MANAGED
=
(
1
<<
8
),
/* filesystem controls freeing memory */
PBF_FS_DATAIOD
=
(
1
<<
9
),
/* schedule IO completion on fs datad */
PBF_FORCEIO
=
(
1
<<
10
),
/* ignore any cache state */
PBF_FLUSH
=
(
1
<<
11
),
/* flush disk write cache */
PBF_ORDERED
=
(
1
<<
11
),
/* use ordered writes */
PBF_READ_AHEAD
=
(
1
<<
12
),
/* asynchronous read-ahead */
/* flags used only as arguments to access routines */
...
...
@@ -92,9 +70,6 @@ typedef enum page_buf_flags_e { /* pb_flags values */
_PBF_DELWRI_Q
=
(
1
<<
21
),
/* buffer on delwri queue */
}
page_buf_flags_t
;
#define PBF_UPDATE (PBF_READ | PBF_WRITE)
#define PBF_NOT_DONE(pb) (((pb)->pb_flags & (PBF_PARTIAL|PBF_NONE)) != 0)
#define PBF_DONE(pb) (((pb)->pb_flags & (PBF_PARTIAL|PBF_NONE)) == 0)
typedef
struct
xfs_bufhash
{
struct
list_head
bh_list
;
...
...
@@ -258,7 +233,6 @@ extern void pagebuf_unlock( /* unlock buffer */
extern
void
pagebuf_iodone
(
/* mark buffer I/O complete */
xfs_buf_t
*
,
/* buffer to mark */
int
,
/* use data/log helper thread. */
int
);
/* run completion locally, or in
* a helper thread. */
...
...
@@ -378,21 +352,21 @@ extern void pagebuf_trace(
#define XFS_BUF_GETERROR(x) pagebuf_geterror(x)
#define XFS_BUF_ISERROR(x) (pagebuf_geterror(x)?1:0)
#define XFS_BUF_DONE(x) ((x)->pb_flags
&
=
~(
PBF_
PARTIAL|PBF_N
ONE)
)
#define XFS_BUF_UNDONE(x) ((x)->pb_flags
|
= PBF_
PARTIAL|PBF_N
ONE)
#define XFS_BUF_ISDONE(x) (
!(PBF_NOT_DONE(x))
)
#define XFS_BUF_DONE(x) ((x)->pb_flags
|
= PBF_
D
ONE)
#define XFS_BUF_UNDONE(x) ((x)->pb_flags
&
=
~
PBF_
D
ONE)
#define XFS_BUF_ISDONE(x) (
(x)->pb_flags & PBF_DONE
)
#define XFS_BUF_BUSY(x)
((x)->pb_flags |= PBF_FORCEIO
)
#define XFS_BUF_UNBUSY(x)
((x)->pb_flags &= ~PBF_FORCEIO
)
#define XFS_BUF_BUSY(x)
do { } while (0
)
#define XFS_BUF_UNBUSY(x)
do { } while (0
)
#define XFS_BUF_ISBUSY(x) (1)
#define XFS_BUF_ASYNC(x) ((x)->pb_flags |= PBF_ASYNC)
#define XFS_BUF_UNASYNC(x) ((x)->pb_flags &= ~PBF_ASYNC)
#define XFS_BUF_ISASYNC(x) ((x)->pb_flags & PBF_ASYNC)
#define XFS_BUF_
FLUSH
(x) ((x)->pb_flags |= PBF_
FLUSH
)
#define XFS_BUF_UN
FLUSH
(x) ((x)->pb_flags &= ~PBF_
FLUSH
)
#define XFS_BUF_IS
FLUSH
(x) ((x)->pb_flags & PBF_
FLUSH
)
#define XFS_BUF_
ORDERED
(x) ((x)->pb_flags |= PBF_
ORDERED
)
#define XFS_BUF_UN
ORDERED
(x) ((x)->pb_flags &= ~PBF_
ORDERED
)
#define XFS_BUF_IS
ORDERED
(x) ((x)->pb_flags & PBF_
ORDERED
)
#define XFS_BUF_SHUT(x) printk("XFS_BUF_SHUT not implemented yet\n")
#define XFS_BUF_UNSHUT(x) printk("XFS_BUF_UNSHUT not implemented yet\n")
...
...
@@ -412,9 +386,6 @@ extern void pagebuf_trace(
#define XFS_BUF_BP_ISMAPPED(bp) 1
#define XFS_BUF_DATAIO(x) ((x)->pb_flags |= PBF_FS_DATAIOD)
#define XFS_BUF_UNDATAIO(x) ((x)->pb_flags &= ~PBF_FS_DATAIOD)
#define XFS_BUF_IODONE_FUNC(buf) (buf)->pb_iodone
#define XFS_BUF_SET_IODONE_FUNC(buf, func) \
(buf)->pb_iodone = (func)
...
...
@@ -510,7 +481,7 @@ static inline void xfs_buf_relse(xfs_buf_t *bp)
pagebuf_trace(bp, id, NULL, (void *)__builtin_return_address(0))
#define xfs_biodone(pb) \
pagebuf_iodone(pb,
(pb->pb_flags & PBF_FS_DATAIOD),
0)
pagebuf_iodone(pb, 0)
#define xfs_biomove(pb, off, len, data, rw) \
pagebuf_iomove((pb), (off), (len), (data), \
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/xfs_cred.h
View file @
0f3278d1
/*
* Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __XFS_CRED_H__
#define __XFS_CRED_H__
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/xfs_export.c
View file @
0f3278d1
/*
* Copyright (c) 2004-2005 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2004-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "xfs.h"
#include "xfs_types.h"
#include "xfs_dmapi.h"
...
...
@@ -41,7 +26,7 @@
#include "xfs_export.h"
/*
* XFS encode and decodes the fileid portion of NFS filehandles
* XFS encode
s
and decodes the fileid portion of NFS filehandles
* itself instead of letting the generic NFS code do it. This
* allows filesystems with 64 bit inode numbers to be exported.
*
...
...
@@ -51,7 +36,6 @@
* remains in that code.
*/
STATIC
struct
dentry
*
linvfs_decode_fh
(
struct
super_block
*
sb
,
...
...
@@ -92,7 +76,7 @@ linvfs_decode_fh(
p
=
xfs_fileid_decode_fid2
(
p
,
&
pfid
,
is64
);
parent
=
&
pfid
;
}
fh
=
(
__u32
*
)
&
ifid
;
return
find_exported_dentry
(
sb
,
fh
,
parent
,
acceptable
,
context
);
}
...
...
@@ -112,9 +96,8 @@ linvfs_encode_fh(
int
is64
=
0
;
#if XFS_BIG_INUMS
vfs_t
*
vfs
=
LINVFS_GET_VFS
(
inode
->
i_sb
);
xfs_mount_t
*
mp
=
XFS_VFSTOM
(
vfs
);
if
(
!
(
mp
->
m_flags
&
XFS_MOUNT_32BITINOOPT
))
{
if
(
!
(
vfs
->
vfs_flag
&
VFS_32BITINODES
))
{
/* filesystem may contain 64bit inode numbers */
is64
=
XFS_FILEID_TYPE_64FLAG
;
}
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/xfs_export.h
View file @
0f3278d1
/*
* Copyright (c) 2005 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __XFS_EXPORT_H__
#define __XFS_EXPORT_H__
...
...
This diff is collapsed.
Click to expand it.
fs/xfs/linux-2.6/xfs_file.c
View file @
0f3278d1
/*
* Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
* Copyright (c) 2000-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of
version 2 of
the GNU General Public License as
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "xfs.h"
#include "xfs_
inum
.h"
#include "xfs_
bit
.h"
#include "xfs_log.h"
#include "xfs_inum.h"
#include "xfs_sb.h"
#include "xfs_ag.h"
#include "xfs_dir.h"
#include "xfs_dir2.h"
#include "xfs_trans.h"
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
3
4
5
…
9
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment