aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@sgi.com>2005-05-05 16:29:17 -0400
committerChristoph Hellwig <hch@melbourne.sgi.com>2005-05-05 16:29:17 -0400
commit764433b7f1cf5d7b5e27ceb4f5546042e1f4acc7 (patch)
tree127f84ce4af9034577fcd01888a206ab40388301 /fs
parent1f443ad70d3afa6bc74019ade2d664eadd7d505a (diff)
[XFS] Fix up warnings
SGI Modid: xfs-linux:xfs-kern:191411a Signed-off-by: Eric Sandeen <sandeen@sgi.com> Signed-off-by: Christoph Hellwig <hch@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/linux-2.6/xfs_vnode.c4
-rw-r--r--fs/xfs/linux-2.6/xfs_vnode.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/linux-2.6/xfs_vnode.c b/fs/xfs/linux-2.6/xfs_vnode.c
index 849c61c74f3c..4b1b1bcdb6b3 100644
--- a/fs/xfs/linux-2.6/xfs_vnode.c
+++ b/fs/xfs/linux-2.6/xfs_vnode.c
@@ -424,13 +424,13 @@ vn_remove(
424 * Vnode tracing code. 424 * Vnode tracing code.
425 */ 425 */
426void 426void
427vn_trace_entry(vnode_t *vp, char *func, inst_t *ra) 427vn_trace_entry(vnode_t *vp, const char *func, inst_t *ra)
428{ 428{
429 KTRACE_ENTER(vp, VNODE_KTRACE_ENTRY, func, 0, ra); 429 KTRACE_ENTER(vp, VNODE_KTRACE_ENTRY, func, 0, ra);
430} 430}
431 431
432void 432void
433vn_trace_exit(vnode_t *vp, char *func, inst_t *ra) 433vn_trace_exit(vnode_t *vp, const char *func, inst_t *ra)
434{ 434{
435 KTRACE_ENTER(vp, VNODE_KTRACE_EXIT, func, 0, ra); 435 KTRACE_ENTER(vp, VNODE_KTRACE_EXIT, func, 0, ra);
436} 436}
diff --git a/fs/xfs/linux-2.6/xfs_vnode.h b/fs/xfs/linux-2.6/xfs_vnode.h
index 4ee229301241..00466c3194ac 100644
--- a/fs/xfs/linux-2.6/xfs_vnode.h
+++ b/fs/xfs/linux-2.6/xfs_vnode.h
@@ -648,8 +648,8 @@ static inline int VN_BAD(struct vnode *vp)
648#define VNODE_KTRACE_REF 4 648#define VNODE_KTRACE_REF 4
649#define VNODE_KTRACE_RELE 5 649#define VNODE_KTRACE_RELE 5
650 650
651extern void vn_trace_entry(struct vnode *, char *, inst_t *); 651extern void vn_trace_entry(struct vnode *, const char *, inst_t *);
652extern void vn_trace_exit(struct vnode *, char *, inst_t *); 652extern void vn_trace_exit(struct vnode *, const char *, inst_t *);
653extern void vn_trace_hold(struct vnode *, char *, int, inst_t *); 653extern void vn_trace_hold(struct vnode *, char *, int, inst_t *);
654extern void vn_trace_ref(struct vnode *, char *, int, inst_t *); 654extern void vn_trace_ref(struct vnode *, char *, int, inst_t *);
655extern void vn_trace_rele(struct vnode *, char *, int, inst_t *); 655extern void vn_trace_rele(struct vnode *, char *, int, inst_t *);