public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] propogate gfp_t changes further
@ 2005-10-24  1:07 Stephen Rothwell
  2005-10-24  2:03 ` Al Viro
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2005-10-24  1:07 UTC (permalink / raw)
  To: Andrew Morton; +Cc: LKML, Linus


This small patch gits rid of a couple of compile warnings.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---

 include/linux/textsearch.h |    4 ++--
 lib/textsearch.c           |    3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

3c2113ffbc51db2bd1e1285c60657850289e634d
diff --git a/include/linux/textsearch.h b/include/linux/textsearch.h
--- a/include/linux/textsearch.h
+++ b/include/linux/textsearch.h
@@ -40,7 +40,7 @@ struct ts_state
 struct ts_ops
 {
 	const char		*name;
-	struct ts_config *	(*init)(const void *, unsigned int, int);
+	struct ts_config *	(*init)(const void *, unsigned int, gfp_t);
 	unsigned int		(*find)(struct ts_config *,
 					struct ts_state *);
 	void			(*destroy)(struct ts_config *);
@@ -148,7 +148,7 @@ static inline unsigned int textsearch_ge
 extern int textsearch_register(struct ts_ops *);
 extern int textsearch_unregister(struct ts_ops *);
 extern struct ts_config *textsearch_prepare(const char *, const void *,
-					    unsigned int, int, int);
+					    unsigned int, gfp_t, int);
 extern void textsearch_destroy(struct ts_config *conf);
 extern unsigned int textsearch_find_continuous(struct ts_config *,
 					       struct ts_state *,
diff --git a/lib/textsearch.c b/lib/textsearch.c
--- a/lib/textsearch.c
+++ b/lib/textsearch.c
@@ -254,7 +254,8 @@ unsigned int textsearch_find_continuous(
  *         parameters or a ERR_PTR().
  */
 struct ts_config *textsearch_prepare(const char *algo, const void *pattern,
-				     unsigned int len, int gfp_mask, int flags)
+				     unsigned int len, gfp_t gfp_mask,
+				     int flags)
 {
 	int err = -ENOENT;
 	struct ts_config *conf;

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-10-24  2:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-24  1:07 [PATCH] propogate gfp_t changes further Stephen Rothwell
2005-10-24  2:03 ` Al Viro
2005-10-24  2:18   ` Linus Torvalds

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox