Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d386b32b authored by Dave Chinner's avatar Dave Chinner Committed by Ben Myers
Browse files

xfs: sync minor header differences needed by userspace.



Little things like exported functions, __KERNEL__ protections, and
so on that ensure user and kernel shared headers are identical.

Signed-off-by: default avatarDave Chinner <dchinner@redhat.com>
Reviewed-by: default avatarBrian Foster <bfoster@redhat.com>
Reviewed-by: default avatarMark Tinguely <tinguely@sgi.com>
Signed-off-by: default avatarBen Myers <bpm@sgi.com>
parent 76456fc2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
#include "xfs_bit.h"
#include "xfs_log.h"
#include "xfs_trans.h"
#include "xfs_trans_priv.h"
#include "xfs_sb.h"
#include "xfs_ag.h"
#include "xfs_mount.h"
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@
#include "xfs_bit.h"
#include "xfs_log.h"
#include "xfs_trans.h"
#include "xfs_trans_priv.h"
#include "xfs_sb.h"
#include "xfs_ag.h"
#include "xfs_mount.h"
+2 −0
Original line number Diff line number Diff line
@@ -333,6 +333,8 @@ int xfs_attr3_leaf_read(struct xfs_trans *tp, struct xfs_inode *dp,
			struct xfs_buf **bpp);
void	xfs_attr3_leaf_hdr_from_disk(struct xfs_attr3_icleaf_hdr *to,
				     struct xfs_attr_leafblock *from);
void	xfs_attr3_leaf_hdr_to_disk(struct xfs_attr_leafblock *to,
				   struct xfs_attr3_icleaf_hdr *from);

extern const struct xfs_buf_ops xfs_attr3_leaf_buf_ops;

+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@
#include "xfs_bit.h"
#include "xfs_log.h"
#include "xfs_trans.h"
#include "xfs_trans_priv.h"
#include "xfs_sb.h"
#include "xfs_ag.h"
#include "xfs_mount.h"
+2 −0
Original line number Diff line number Diff line
@@ -137,9 +137,11 @@ typedef struct xfs_bmalloca {
	char			conv;	/* overwriting unwritten extents */
	char			stack_switch;
	int			flags;
#ifdef __KERNEL__
	struct completion	*done;
	struct work_struct	work;
	int			result;
#endif /* __KERNEL__ */
} xfs_bmalloca_t;

/*
Loading