-
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.
- Loading branch information
Arnaldo Carvalho de Melo
authored and
Ingo Molnar
committed
Jun 2, 2009
1 parent
601e61f
commit 0c968d2
Showing
3 changed files
with
43 additions
and
1 deletion.
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: 229c4eedcedcdadf70411120ba34bc37554a74bd | ||
refs/heads/master: ea5cc87c63b49c133d15ec2911bb2e49e8124516 |
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,34 @@ | ||
#include "string.h" | ||
|
||
static int hex(char ch) | ||
{ | ||
if ((ch >= '0') && (ch <= '9')) | ||
return ch - '0'; | ||
if ((ch >= 'a') && (ch <= 'f')) | ||
return ch - 'a' + 10; | ||
if ((ch >= 'A') && (ch <= 'F')) | ||
return ch - 'A' + 10; | ||
return -1; | ||
} | ||
|
||
/* | ||
* While we find nice hex chars, build a long_val. | ||
* Return number of chars processed. | ||
*/ | ||
int hex2u64(const char *ptr, __u64 *long_val) | ||
{ | ||
const char *p = ptr; | ||
*long_val = 0; | ||
|
||
while (*p) { | ||
const int hex_val = hex(*p); | ||
|
||
if (hex_val < 0) | ||
break; | ||
|
||
*long_val = (*long_val << 4) | hex_val; | ||
p++; | ||
} | ||
|
||
return p - ptr; | ||
} |
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,8 @@ | ||
#ifndef _PERF_STRING_H_ | ||
#define _PERF_STRING_H_ | ||
|
||
#include <linux/types.h> | ||
|
||
int hex2u64(const char *ptr, __u64 *val); | ||
|
||
#endif |