Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
739d17f2
Commit
739d17f2
authored
Jan 09, 2004
by
Nathan Scott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] Fix exports for tracing symbol access in idbg code.
SGI Modid: 2.5.x-xfs:slinx:160243a
parent
a270f1d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
73 additions
and
1 deletion
+73
-1
fs/xfs/linux/xfs_globals.c
fs/xfs/linux/xfs_globals.c
+73
-1
No files found.
fs/xfs/linux/xfs_globals.c
View file @
739d17f2
...
...
@@ -36,9 +36,57 @@
*/
#include "xfs.h"
#include "xfs_fs.h"
#include "xfs_buf.h"
#include "xfs_inum.h"
#include "xfs_log.h"
#include "xfs_clnt.h"
#include "xfs_trans.h"
#include "xfs_sb.h"
#include "xfs_ag.h"
#include "xfs_dir.h"
#include "xfs_dir2.h"
#include "xfs_imap.h"
#include "xfs_alloc.h"
#include "xfs_dmapi.h"
#include "xfs_quota.h"
#include "xfs_mount.h"
#include "xfs_alloc_btree.h"
#include "xfs_bmap_btree.h"
#include "xfs_ialloc_btree.h"
#include "xfs_btree.h"
#include "xfs_ialloc.h"
#include "xfs_attr_sf.h"
#include "xfs_dir_sf.h"
#include "xfs_dir2_sf.h"
#include "xfs_dinode.h"
#include "xfs_inode.h"
#include "xfs_bmap.h"
#include "xfs_bit.h"
#include "xfs_rtalloc.h"
#include "xfs_error.h"
#include "xfs_itable.h"
#include "xfs_rw.h"
#include "xfs_da_btree.h"
#include "xfs_dir_leaf.h"
#include "xfs_dir2_data.h"
#include "xfs_dir2_leaf.h"
#include "xfs_dir2_block.h"
#include "xfs_dir2_node.h"
#include "xfs_dir2_trace.h"
#include "xfs_acl.h"
#include "xfs_cap.h"
#include "xfs_mac.h"
#include "xfs_attr.h"
#include "xfs_attr_leaf.h"
#include "xfs_inode_item.h"
#include "xfs_buf_item.h"
#include "xfs_extfree_item.h"
#include "xfs_log_priv.h"
#include "xfs_trans_priv.h"
#include "xfs_trans_space.h"
#include "xfs_utils.h"
/*
* System memory size - used to scale certain data structures in XFS.
...
...
@@ -69,10 +117,34 @@ xfs_param_t xfs_params = {
*/
cred_t
sys_cred_val
,
*
sys_cred
=
&
sys_cred_val
;
/* Export XFS symbols used by xfsidbg */
/*
* Export symbols used for XFS debugging
*/
EXPORT_SYMBOL
(
xfs_next_bit
);
EXPORT_SYMBOL
(
xfs_contig_bits
);
EXPORT_SYMBOL
(
xfs_bmbt_get_all
);
#if ARCH_CONVERT != ARCH_NOCONVERT
EXPORT_SYMBOL
(
xfs_bmbt_disk_get_all
);
#endif
/*
* Export symbols used for XFS tracing
*/
#ifdef XFS_ALLOC_TRACE
EXPORT_SYMBOL
(
xfs_alloc_trace_buf
);
#endif
#ifdef XFS_BMAP_TRACE
EXPORT_SYMBOL
(
xfs_bmap_trace_buf
);
#endif
#ifdef XFS_BMBT_TRACE
EXPORT_SYMBOL
(
xfs_bmbt_trace_buf
);
#endif
#ifdef XFS_ATTR_TRACE
EXPORT_SYMBOL
(
xfs_attr_trace_buf
);
#endif
#ifdef XFS_DIR2_TRACE
EXPORT_SYMBOL
(
xfs_dir2_trace_buf
);
#endif
#ifdef XFS_DIR_TRACE
EXPORT_SYMBOL
(
xfs_dir_trace_buf
);
#endif
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