Revision b92eded4b7e6facc4e4ba07de89a3fc24de99552 authored by Linus Torvalds on 29 March 2013, 18:47:43 UTC, committed by Linus Torvalds on 29 March 2013, 18:47:43 UTC
Pull ceph fix from Sage Weil:
 "This fixes a regression introduced during the last merge window when
  mapping non-existent images."

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client:
  rbd: don't zero-fill non-image object requests
2 parent s 3615db4 + 6e2a450
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