public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-wireless/ndiswrapper/files: ndiswrapper-1.59-3.14.patch
@ 2014-04-11 18:17 Christoph Mende (angelos)
  0 siblings, 0 replies; only message in thread
From: Christoph Mende (angelos) @ 2014-04-11 18:17 UTC (permalink / raw
  To: gentoo-commits

angelos     14/04/11 18:17:47

  Added:                ndiswrapper-1.59-3.14.patch
  Log:
  Fix compilation against linux 3.14 (bug #507348)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 84F20B43)

Revision  Changes    Path
1.1                  net-wireless/ndiswrapper/files/ndiswrapper-1.59-3.14.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/ndiswrapper/files/ndiswrapper-1.59-3.14.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/ndiswrapper/files/ndiswrapper-1.59-3.14.patch?rev=1.1&content-type=text/plain

Index: ndiswrapper-1.59-3.14.patch
===================================================================
Index: driver/crt.c
===================================================================
--- driver/crt.c	(revision 3197)
+++ driver/crt.c	(working copy)
@@ -467,7 +467,7 @@
 noregparm void WIN_FUNC(_win_srand,1)
 	(UINT seed)
 {
-	net_srandom(seed);
+	prandom_seed(seed);
 }
 
 noregparm int WIN_FUNC(rand,0)
Index: driver/ntoskernel.h
===================================================================
--- driver/ntoskernel.h	(revision 3197)
+++ driver/ntoskernel.h	(working copy)
@@ -347,7 +347,7 @@
 #define netdev_notifier_info_to_dev(x) ((struct net_device *)(x))
 #endif
 
-#ifdef INIT_COMPLETION
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,13,0)
 static inline void reinit_completion(struct completion *x)
 {
 	INIT_COMPLETION(*x);
@@ -354,6 +354,10 @@
 }
 #endif
 
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0)
+#define prandom_seed(seed) net_srandom(seed)
+#endif
+
 /* TICK is 100ns */
 #define TICKSPERSEC		10000000
 #define TICKSPERMSEC		10000
@@ -797,9 +801,8 @@
 #define nt_spin_unlock_irqrestore(lock, flags)				\
 do {									\
 	nt_spin_unlock(lock);						\
-	preempt_enable_no_resched();					\
+	preempt_enable();						\
 	local_irq_restore(flags);					\
-	preempt_check_resched();					\
 } while (0)
 
 static inline ULONG SPAN_PAGES(void *ptr, SIZE_T length)





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-04-11 18:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-11 18:17 [gentoo-commits] gentoo-x86 commit in net-wireless/ndiswrapper/files: ndiswrapper-1.59-3.14.patch Christoph Mende (angelos)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox