-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 310823 b: refs/heads/master c: 606686e h: refs/heads/master i: 310821: 52ad9f1 310819: 7c19b35 310815: dca0395 v: v3
- Loading branch information
Josef Bacik
authored and
Chris Mason
committed
Jun 15, 2012
1 parent
6deee7e
commit 84cbae8
Showing
9 changed files
with
163 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| refs/heads/master: 17ca04aff7e6171df684b7b65804df8830eb8c15 | ||
| refs/heads/master: 606686eeac4550d2212bf3d621a810407ef5e9bf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| /* | ||
| * Copyright (C) 2012 Red Hat. All rights reserved. | ||
| * | ||
| * This program is free software; you can redistribute it and/or | ||
| * modify it under the terms of the GNU General Public | ||
| * License v2 as published by the Free Software Foundation. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| * General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public | ||
| * License along with this program; if not, write to the | ||
| * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| * Boston, MA 021110-1307, USA. | ||
| */ | ||
|
|
||
| struct rcu_string { | ||
| struct rcu_head rcu; | ||
| char str[0]; | ||
| }; | ||
|
|
||
| static inline struct rcu_string *rcu_string_strdup(const char *src, gfp_t mask) | ||
| { | ||
| size_t len = strlen(src) + 1; | ||
| struct rcu_string *ret = kzalloc(sizeof(struct rcu_string) + | ||
| (len * sizeof(char)), mask); | ||
| if (!ret) | ||
| return ret; | ||
| strncpy(ret->str, src, len); | ||
| return ret; | ||
| } | ||
|
|
||
| static inline void rcu_string_free(struct rcu_string *str) | ||
| { | ||
| if (str) | ||
| kfree_rcu(str, rcu); | ||
| } | ||
|
|
||
| #define printk_in_rcu(fmt, ...) do { \ | ||
| rcu_read_lock(); \ | ||
| printk(fmt, __VA_ARGS__); \ | ||
| rcu_read_unlock(); \ | ||
| } while (0) | ||
|
|
||
| #define printk_ratelimited_in_rcu(fmt, ...) do { \ | ||
| rcu_read_lock(); \ | ||
| printk_ratelimited(fmt, __VA_ARGS__); \ | ||
| rcu_read_unlock(); \ | ||
| } while (0) | ||
|
|
||
| #define rcu_str_deref(rcu_str) ({ \ | ||
| struct rcu_string *__str = rcu_dereference(rcu_str); \ | ||
| __str->str; \ | ||
| }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.