Revision 0e041fb5369975c183d22ffeb156ea0dae760088 authored by Allen Hubbe on 19 May 2015, 16:04:52 UTC, committed by Jon Mason on 04 July 2015, 18:09:19 UTC
Allocate memory for the NUMA node of the NTB device.

Signed-off-by: Allen Hubbe <Allen.Hubbe@emc.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
1 parent 1199aa6
Raw File
kstrtox.h
#ifndef _LIB_KSTRTOX_H
#define _LIB_KSTRTOX_H

#define KSTRTOX_OVERFLOW	(1U << 31)
const char *_parse_integer_fixup_radix(const char *s, unsigned int *base);
unsigned int _parse_integer(const char *s, unsigned int base, unsigned long long *res);

#endif
back to top