kern/71449: sys/compat/ndis Compilation warnings

Dmitri Nikulin setagllib at optusnet.com.au
Tue Sep 7 00:20:20 PDT 2004


>Number:         71449
>Category:       kern
>Synopsis:       sys/compat/ndis Compilation warnings
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Sep 07 07:20:19 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Dmitri Nikulin
>Release:        5.3-BETA3
>Organization:
>Environment:
FreeBSD dirk.vic.optushome.com.au 5.3-BETA3 FreeBSD 5.3-BETA3 #8: Mon Sep  6 23:44:48 EST 2004     root at dirk.vic.optushome.com.au:/usr/obj/home/bsd/src/sys/KERN  i386
>Description:
Oversights in casting when __stdcall isn't meaningless cause warnings, which, when compiled into the kernel via options NDISAPI and no removal of -werror, kill a kernel compile.
>How-To-Repeat:
'options NDISAPI' in kernel config
Compile kernel normally
>Fix:
Relative to src/sys/compat:

diff -ruN ndis/subr_ndis.c ndis.new/subr_ndis.c
--- ndis/subr_ndis.c	Tue Aug 17 05:25:27 2004
+++ ndis.new/subr_ndis.c	Tue Sep  7 17:04:58 2004
@@ -2875,7 +2875,7 @@
 	__stdcall ndis_proc	workfunc;
 
 	work = ctx;
-	workfunc = work->nwi_func;
+	workfunc = (__stdcall ndis_proc) work->nwi_func;
 	workfunc(work, work->nwi_ctx);
 	return;
 }
diff -ruN ndis/subr_ntoskrnl.c ndis.new/subr_ntoskrnl.c
--- ndis/subr_ntoskrnl.c	Tue Aug 17 04:52:37 2004
+++ ndis.new/subr_ntoskrnl.c	Tue Sep  7 17:05:27 2004
@@ -1694,7 +1694,7 @@
 	uint8_t			irql;
 
 	dpc = arg;
-	dpcfunc = (kdpc_func)dpc->k_deferedfunc;
+	dpcfunc = (__stdcall kdpc_func) dpc->k_deferedfunc;
 	irql = ntoskrnl_raise_irql(DISPATCH_LEVEL);
 	dpcfunc(dpc, dpc->k_deferredctx, dpc->k_sysarg1, dpc->k_sysarg2);
 	ntoskrnl_lower_irql(irql);
>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-bugs mailing list