From owner-freebsd-bugs@FreeBSD.ORG Sun Apr 3 14:30:15 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 565801065672 for ; Sun, 3 Apr 2011 14:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2C40D8FC1E for ; Sun, 3 Apr 2011 14:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p33EUETc071566 for ; Sun, 3 Apr 2011 14:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p33EUEcj071563; Sun, 3 Apr 2011 14:30:14 GMT (envelope-from gnats) Date: Sun, 3 Apr 2011 14:30:14 GMT Message-Id: <201104031430.p33EUEcj071563@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Rozhuk Ivan" Cc: Subject: Re: kern/156130: hints read: resource_longlong_value and resource_uintmax_value X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rozhuk Ivan List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Apr 2011 14:30:15 -0000 The following reply was made to PR kern/156130; it has been noted by GNATS. From: "Rozhuk Ivan" To: Cc: Subject: Re: kern/156130: hints read: resource_longlong_value and resource_uintmax_value Date: Sun, 3 Apr 2011 23:08:54 +0900 This is a multi-part message in MIME format. ------=_NextPart_000_006B_01CBF254.1B3F50A0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: quoted-printable Original patch has errors, this final version. =A0 -- Rozhuk Ivan =A0=20 ------=_NextPart_000_006B_01CBF254.1B3F50A0 Content-Type: text/plain; name="subr_hints.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="subr_hints.txt" --- /usr/src/sys/kern/subr_hints_orig.c 2009-08-03 17:13:06.000000000 = +0900 +++ /usr/src/sys/kern/subr_hints.c 2011-04-03 18:10:57.000000000 = +0900 @@ -273,6 +273,30 @@ return 0; } =20 + +int +resource_quad_t_value(const char *name, int unit, const char *resname, = quad_t *result) +{ + int error; + const char *str; + char *op; + quad_t val; + int line; + + line =3D 0; + error =3D resource_find(&line, NULL, name, &unit, resname, NULL, + NULL, NULL, NULL, NULL, NULL, &str); + if (error) + return error; + if (*str =3D=3D '\0')=20 + return EFTYPE; + val =3D strtoq(str, &op, 0); + if (*op !=3D '\0')=20 + return EFTYPE; + *result =3D val; + return 0; +} + int resource_string_value(const char *name, int unit, const char *resname, const char **result) --- /usr/src/sys/sys/bus.h_orig 2011-02-09 06:08:00.000000000 +0800 +++ /usr/src/sys/sys/bus.h 2011-04-03 18:13:07.000000000 +0900 @@ -470,6 +470,8 @@ int *result); int resource_long_value(const char *name, int unit, const char = *resname, long *result); +int resource_quad_t_value(const char *name, int unit, const char = *resname, + quad_t *result); int resource_string_value(const char *name, int unit, const char = *resname, const char **result); int resource_disabled(const char *name, int unit); ------=_NextPart_000_006B_01CBF254.1B3F50A0--