Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 9668
b: refs/heads/master
c: 3d2aef6
h: refs/heads/master
v: v3
  • Loading branch information
Randy Dunlap authored and David S. Miller committed Oct 5, 2005
1 parent b643c28 commit b144135
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: dd13a285b79ba77416b96ee10f49097f4aaf48c5
refs/heads/master: 3d2aef668920e8d93b77f145f8f647f62abe75db
3 changes: 2 additions & 1 deletion trunk/include/linux/textsearch.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ extern unsigned int textsearch_find_continuous(struct ts_config *,
#define TS_PRIV_ALIGNTO 8
#define TS_PRIV_ALIGN(len) (((len) + TS_PRIV_ALIGNTO-1) & ~(TS_PRIV_ALIGNTO-1))

static inline struct ts_config *alloc_ts_config(size_t payload, int gfp_mask)
static inline struct ts_config *alloc_ts_config(size_t payload,
unsigned int __nocast gfp_mask)
{
struct ts_config *conf;

Expand Down
2 changes: 1 addition & 1 deletion trunk/lib/ts_bm.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ static void compute_prefix_tbl(struct ts_bm *bm, const u8 *pattern,
}

static struct ts_config *bm_init(const void *pattern, unsigned int len,
int gfp_mask)
unsigned int __nocast gfp_mask)
{
struct ts_config *conf;
struct ts_bm *bm;
Expand Down
2 changes: 1 addition & 1 deletion trunk/lib/ts_fsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ static unsigned int fsm_find(struct ts_config *conf, struct ts_state *state)
}

static struct ts_config *fsm_init(const void *pattern, unsigned int len,
int gfp_mask)
unsigned int __nocast gfp_mask)
{
int i, err = -EINVAL;
struct ts_config *conf;
Expand Down
2 changes: 1 addition & 1 deletion trunk/lib/ts_kmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static inline void compute_prefix_tbl(const u8 *pattern, unsigned int len,
}

static struct ts_config *kmp_init(const void *pattern, unsigned int len,
int gfp_mask)
unsigned int __nocast gfp_mask)
{
struct ts_config *conf;
struct ts_kmp *kmp;
Expand Down

0 comments on commit b144135

Please sign in to comment.