Post Reply 
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Windows 7/8 Slow Boot at Windows logo
2015-09-16, 11:17
Post: #17
RE: Windows 7/8 Slow Boot at Windows logo
(2015-09-15 14:52)nobluesky Wrote:  
Quote:Could you also please try the hack at http://fpaste.org/266946/, which will continue to poll the NIC for received packets even if the NIC's interrupt register reports that there are no new received packets.
I'd like to check your patch but it's expired. could you upload the patch again?

I don't have it any more, but I'm pretty sure it was:

Code:
--- a/src/drivers/net/realtek.c
+++ b/src/drivers/net/realtek.c
@@ -988,8 +988,8 @@ static void realtek_poll ( struct net_device *netdev ) {

        /* Check for and acknowledge interrupts */
        isr = readw ( rtl->regs + RTL_ISR );
-       if ( ! isr )
-               return;
+       //      if ( ! isr )
+       //              return;
        writew ( isr, rtl->regs + RTL_ISR );

        /* Poll for TX completions, if applicable */
@@ -997,7 +997,7 @@ static void realtek_poll ( struct net_device *netdev ) {
                realtek_poll_tx ( netdev );

        /* Poll for RX completionsm, if applicable */
-       if ( isr & ( RTL_IRQ_RER | RTL_IRQ_ROK ) )
+       //      if ( isr & ( RTL_IRQ_RER | RTL_IRQ_ROK ) )
                realtek_poll_rx ( netdev );

        /* Check link state, if applicable */

Michael
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Windows 7/8 Slow Boot at Windows logo - mcb30 - 2015-09-16 11:17



User(s) browsing this thread: 1 Guest(s)