Bug 205186 - (reclassified by bugmeister as honeypot)
Summary: (reclassified by bugmeister as honeypot)
Status: Closed FIXED
Alias: None
Product: Other
Classification: Unclassified
Component: Spam (show other bugs)
Version: unspecified
Hardware: amd64 Any
: --- Affects Only Me
Assignee: Bugmeister
URL:
Keywords: honeypot
Depends on: 205263
Blocks:
  Show dependency treegraph
 
Reported: 2015-12-10 10:22 UTC by Brendan Molloy
Modified: 2024-10-28 08:56 UTC (History)
0 users

See Also:


Attachments
console.log output (3.46 KB, text/plain)
2015-12-10 10:22 UTC, Brendan Molloy
no flags Details
Screen at time of hang (interlaced messages showing boot order issue) (255.63 KB, image/jpeg)
2015-12-10 10:27 UTC, Brendan Molloy
no flags Details
Updated diff for netwait script (5.37 KB, patch)
2015-12-17 23:50 UTC, Ian Lepore
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Brendan Molloy 2015-12-10 10:22:47 UTC
Created attachment 164034 [details]
console.log output

Today I've set up an old Inspiron 1525 laptop as a FreeBSD server. The internal NIC had died, so I am using an external NIC connected via USB. To my delight, FreeBSD detected it immediately and it just worked. It was wonderful!

However, troubles began when I added an NFS mount to my /etc/fstab. Upon booting, due to the fact the USB device isn't recognised and connected until after the booting process has finished, booting hangs with an error.

Dec 10 21:16:40 aerie kernel: Mounting NFS file systems:[tcp] 10.0.0.4:/nfs/BorgBackups: RPCPROG_NFS: RPC: Port mapper failure - RPC: Unable to send

Simply waiting, it will repeat this error after a while. I decided to try Ctrl+C, and booting completed. That caused this line in the console.log:

Dec 10 21:16:40 aerie kernel: Script /etc/rc.d/mountcritremote interrupted
Comment 1 Brendan Molloy 2015-12-10 10:27:05 UTC
Created attachment 164035 [details]
Screen at time of hang (interlaced messages showing boot order issue)
Comment 2 Kubilay Kocak freebsd_committer freebsd_triage 2015-12-10 10:32:49 UTC
Thank you for the detailed report Brendan!
Comment 3 Hans Petter Selasky freebsd_committer freebsd_triage 2015-12-10 10:42:20 UTC
Hi,

Try MFC-ing r288265 to 10-stable.

https://svnweb.freebsd.org/changeset/base/288265

--HPS
Comment 4 Brendan Molloy 2015-12-10 10:48:59 UTC
I noticed a way to reproduce this issue while trying to fix some of my firewall rules.

Block all connections with a firewall (I used ipfilter). It will cause the hang at /etc/rc.d/mountcritremote when attempting to mount an NFS mount.

Once I fixed my rules, it still hangs for me on boot even with firewalls disabled, but eventually recovers when it retries after the network interface becomes available.
Comment 5 Ian Lepore freebsd_committer freebsd_triage 2015-12-10 15:31:06 UTC
(In reply to Hans Petter Selasky from comment #3)

I don't think r288265 will help -- it delays mounting root before init even begins, for diskless operation with an nfs root.  (I should still MFC it tho.)  Since the system isn't configured for nfsroot, it won't come into play.

In this case it's a matter of the network rc scripts running before the usb network interface is available, and I don't think we have any mechanism for waiting for NICs to arrive.

One thing that will work, but it's more of a workaround than a fix, is to set kern.cam.boot_delay=nnnnnn in loader.conf.  The delay is in milliseconds, so something like 10000 is probably enough.
Comment 6 Hans Petter Selasky freebsd_committer freebsd_triage 2015-12-10 15:34:29 UTC
OK, so is this an USB issue then?
Comment 7 Ian Lepore freebsd_committer freebsd_triage 2015-12-10 16:30:21 UTC
(In reply to Hans Petter Selasky from comment #6)

I don't think it's a problem in the sense of there being some usb driver code that can be changed to make it work -- it's an rc-scripts problem.

Oh, interesting... I've just discovered the existence of /etc/rc.d/netwait.  It looks like it's designed to handle exactly this situation... mountcritremote waits for netwait, and netwait can be configured to use a specific interface to ping an ip address and it doesn't complete until it gets a response or times out.  I think you just add netwait_enable=YES, netwait_if=<whatever>, netwait_ip=<ip to ping>.

If the interface is dhcp instead of static, just change it to SYNCDHCP in rc.conf
Comment 8 Brendan Molloy 2015-12-11 00:31:50 UTC
I tried the netwait method:

Dec 11 11:27:33 aerie kernel: Waiting for ue0 to have link
Dec 11 11:27:33 aerie kernel: /etc/rc: ERROR: ifconfig ue0 failed
Dec 11 11:27:33 aerie kernel: Mounting NFS file systems:[tcp] 10.0.0.4:/nfs/BorgBackups: RPCPROG_NFS: RPC: Port mapper failure - RPC: Unable to send

The interface does not exist at all until after the script had already run, so maybe the script should have an option to be more patient with errors?
Comment 9 Brendan Molloy 2015-12-11 14:09:28 UTC
Because I love FreeBSD, I am providing further information on this issue at 1am on a Saturday on Hans' and Kubilay's behalf.

I was asked to add hw.usb.axe.debug=16 to sysctl.conf, and I rebooted.

The only difference in logs was this:

Dec 12 01:01:34 aerie kernel: ue0: <USB Ethernet> on axe0
Dec 12 01:01:34 aerie kernel: ue0: Ethernet address: 00:50:b6:16:30:de
Dec 12 01:01:35 aerie ntpd[601]: ntpd 4.2.8p3-a (1): Starting
Dec 12 01:01:35 aerie kernel: .
Dec 12 01:01:36 aerie kernel: axe_bulk_write_callback: transfer complete
Dec 12 01:02:05 aerie last message repeated 10 times
Dec 12 01:02:53 aerie last message repeated 28 times
Comment 10 Ian Lepore freebsd_committer freebsd_triage 2015-12-11 16:22:22 UTC
(In reply to Brendan Molloy from comment #8)

Oh!  I should have realized... the interface doesn't exist until devd comes along and creates it, and that's too late.  I think you can fix that by adding to /boot/loader.conf:

  if_axe_load=YES

and you'll probably still need either SYNCDHCP or newait_enable for static ip.
Comment 11 Brendan Molloy 2015-12-12 05:27:25 UTC
(In reply to Ian Lepore from comment #10)

I tried this, and you are right, I still needed netwait.

The patch I provided in bug #205263 makes netwait more resilient to late loading of the modules, as it doesn't immediately scream about no interface when no iface is yet found. The timeout then gives enough time for the module to load at its own pace, while not requiring any changes to /boot/loader.conf.

If my patch is clean enough, it provides a solution inline with the principle of least astonishment to a problem that may become more prevalent in the future, as many modern laptops do not any longer include ethernet ports and users rely on USB or Thunderbolt ethernet adapters.
Comment 12 Ian Lepore freebsd_committer freebsd_triage 2015-12-17 23:50:45 UTC
Created attachment 164335 [details]
Updated diff for netwait script

I was updating the comments at the top of the script (seems to be the only "documentation" for netwait), and while describing how you could provide a list of interfaces to wait for, I realized it only allowed 1 interface.  I figured someone could have usb wifi and usb wired NIC or multiple NICs or whatever, so I updated the script to handle a list of interfaces.

I can only test the failure path (interface never arrives), it needs a test with real late-arriving hardware.
Comment 13 Ian Lepore freebsd_committer freebsd_triage 2015-12-18 01:04:11 UTC
I have turned the latest diff into a review at https://reviews.freebsd.org/D4608
Comment 14 commit-hook freebsd_committer freebsd_triage 2015-12-26 18:22:10 UTC
A commit references this bug:

Author: ian
Date: Sat Dec 26 18:21:33 UTC 2015
New revision: 292752
URL: https://svnweb.freebsd.org/changeset/base/292752

Log:
  Enhance rc.d/netwait script to wait for late-attaching interfaces such as
  USB NICs.

  USB network hardware may not be enumerated and available when the rc.d
  networking scripts run. Eventually the USB attachment completes and devd
  events cause the network initialization to happen, but by then other rc.d
  scripts have already failed, because services which depend on NETWORKING
  (such as mountcritremote) may end up running before the network is actually
  ready.

  There is an existing netwait script, but because it is dependent on
  NETWORKING it runs too late to prevent failure of some other rc
  scripts. This change flips the order so that NETWORKING depends on netwait,
  and netwait now depends on devd and routing (the former is needed to make
  interfaces appear, and the latter is needed to run the ping tests in
  netwait).

  The netwait script used to be oriented primarily towards "as soon as any
  host is reachable the network is fully functional", so you gave it a list of
  IPs to try and you could optionally name an interface and it would wait for
  carrier on that interface. That functionality still works the same, but now
  you can provide a list of interfaces to wait for and it waits until each one
  of them is available. The ping logic still completes as soon as the first IP
  on the list responds.

  These changes were submitted by Brenden Molloy <brendan+freebsd@bbqsrc.net>
  in PR 205186, and lightly modified by me to allow a list of interfaces
  instead of just one.

  PR:		205186
  Differential Revision:	https://reviews.freebsd.org/D4608 (timeout w/o review)

Changes:
  head/etc/defaults/rc.conf
  head/etc/rc.d/NETWORKING
  head/etc/rc.d/netwait
Comment 15 commit-hook freebsd_committer freebsd_triage 2016-01-24 19:41:36 UTC
A commit references this bug:

Author: ian
Date: Sun Jan 24 19:41:32 UTC 2016
New revision: 294680
URL: https://svnweb.freebsd.org/changeset/base/294680

Log:
  MFC r292752:

    Enhance rc.d/netwait script to wait for late-attaching interfaces such as
    USB NICs.

    USB network hardware may not be enumerated and available when the rc.d
    networking scripts run. Eventually the USB attachment completes and devd
    events cause the network initialization to happen, but by then other rc.d
    scripts have already failed, because services which depend on NETWORKING
    (such as mountcritremote) may end up running before the network is actually
    ready.

    There is an existing netwait script, but because it is dependent on
    NETWORKING it runs too late to prevent failure of some other rc
    scripts. This change flips the order so that NETWORKING depends on netwait,
    and netwait now depends on devd and routing (the former is needed to make
    interfaces appear, and the latter is needed to run the ping tests in
    netwait).

    The netwait script used to be oriented primarily towards "as soon as any
    host is reachable the network is fully functional", so you gave it a list of
    IPs to try and you could optionally name an interface and it would wait for
    carrier on that interface. That functionality still works the same, but now
    you can provide a list of interfaces to wait for and it waits until each one
    of them is available. The ping logic still completes as soon as the first IP
    on the list responds.

    These changes were submitted by Brenden Molloy <brendan+freebsd@bbqsrc.net>
    in PR 205186, and lightly modified by me to allow a list of interfaces
    instead of just one.

  PR:           205186
  Relnotes:	yes

Changes:
_U  stable/10/
  stable/10/etc/defaults/rc.conf
  stable/10/etc/rc.d/NETWORKING
  stable/10/etc/rc.d/netwait
Comment 16 neverendservices 2023-05-29 11:12:36 UTC
MARKED AS SPAM
Comment 17 Rockypatel 2023-07-09 14:54:20 UTC
MARKED AS SPAM
Comment 18 VN Editor For PC 2023-07-17 09:51:14 UTC
MARKED AS SPAM
Comment 19 ctbae 2023-08-08 06:16:32 UTC
MARKED AS SPAM
Comment 20 Dicik 2023-08-08 09:16:41 UTC
MARKED AS SPAM
Comment 21 streetgirls69 2023-08-08 09:25:18 UTC
MARKED AS SPAM
Comment 22 ctmot 2023-08-08 09:32:37 UTC
MARKED AS SPAM
Comment 23 depadas 2023-08-08 09:38:03 UTC
MARKED AS SPAM
Comment 24 Free Story 2023-09-06 07:10:52 UTC
MARKED AS SPAM
Comment 25 My Heaven Models Bangalore 2023-09-06 07:14:53 UTC
MARKED AS SPAM
Comment 26 My Heaven Models Bangalore 2023-09-06 07:16:33 UTC
MARKED AS SPAM
Comment 27 indiamyheavenmodels 2023-09-08 06:19:17 UTC
MARKED AS SPAM
Comment 28 Hyderabad Lily 2023-09-08 07:22:53 UTC
MARKED AS SPAM
Comment 29 priyanka 2023-09-08 08:14:55 UTC
MARKED AS SPAM
Comment 30 My Heaven Models Bangalore 2023-09-11 10:16:45 UTC
MARKED AS SPAM
Comment 31 visakhapatnam escorts 2023-09-11 13:25:51 UTC
MARKED AS SPAM
Comment 32 mussoorie myheavenmodels 2023-09-14 11:29:43 UTC
MARKED AS SPAM
Comment 33 priyanka 2023-09-16 07:35:34 UTC
MARKED AS SPAM
Comment 34 eatandrunpolice123 2023-09-20 10:09:00 UTC
MARKED AS SPAM
Comment 35 Kavya Gupta 2023-09-30 10:01:50 UTC
MARKED AS SPAM
Comment 36 Russian Escorts In Mumbai 2023-10-06 09:33:07 UTC
MARKED AS SPAM
Comment 37 Ethan carter 2023-10-11 05:49:04 UTC
MARKED AS SPAM
Comment 38 A Jaipur Escort 2023-10-12 12:41:20 UTC
MARKED AS SPAM
Comment 39 tinaduuta 2023-10-13 10:03:49 UTC
MARKED AS SPAM
Comment 40 tinaduuta 2023-10-13 10:04:34 UTC
MARKED AS SPAM
Comment 41 renudas 2023-10-17 09:48:00 UTC
MARKED AS SPAM
Comment 42 anna 2023-10-31 13:58:28 UTC
MARKED AS SPAM
Comment 43 Chhavi Garg 2023-12-07 05:41:17 UTC
MARKED AS SPAM
Comment 44 garimasuri 2023-12-08 05:45:06 UTC
MARKED AS SPAM
Comment 45 xedifo 2023-12-21 14:05:46 UTC
MARKED AS SPAM
Comment 46 Aashvi Khanna 2024-01-02 10:14:35 UTC
MARKED AS SPAM
Comment 47 isabasu 2024-01-08 10:03:32 UTC
MARKED AS SPAM
Comment 48 Neha Mari 2024-01-11 09:55:09 UTC
MARKED AS SPAM
Comment 49 Divya Aggarwal 2024-01-23 18:49:10 UTC
MARKED AS SPAM
Comment 50 Haridwar Escorts Dimpal 2024-01-29 15:56:58 UTC
MARKED AS SPAM
Comment 51 Haridwar Escorts Dimpal 2024-02-19 09:07:26 UTC
MARKED AS SPAM
Comment 52 India Escorts 2024-02-19 17:31:11 UTC
MARKED AS SPAM
Comment 53 India Escorts 2024-02-19 18:42:10 UTC
MARKED AS SPAM
Comment 54 India Escorts 2024-02-19 18:57:14 UTC
MARKED AS SPAM
Comment 55 India Escorts 2024-02-19 19:13:24 UTC
MARKED AS SPAM
Comment 56 agencymumbaigirl 2024-02-28 09:37:18 UTC
MARKED AS SPAM
Comment 57 riyamalik2u 2024-03-11 08:17:54 UTC
MARKED AS SPAM
Comment 58 Tina Kapoor 2024-03-12 06:37:59 UTC
MARKED AS SPAM
Comment 59 shruti goyal 2024-03-15 07:07:35 UTC
MARKED AS SPAM
Comment 60 shruti goyal 2024-03-15 07:08:10 UTC
MARKED AS SPAM
Comment 61 shruti goyal 2024-03-15 07:08:31 UTC
MARKED AS SPAM
Comment 62 shruti goyal 2024-03-15 07:08:49 UTC
MARKED AS SPAM
Comment 63 shruti goyal 2024-03-15 07:09:21 UTC
MARKED AS SPAM
Comment 64 shruti goyal 2024-03-15 07:10:26 UTC
MARKED AS SPAM
Comment 65 riyamalik2u 2024-03-15 07:10:53 UTC
MARKED AS SPAM
Comment 66 shruti goyal 2024-03-15 07:12:05 UTC
MARKED AS SPAM
Comment 67 vipmumbaiescorts 2024-04-06 04:58:34 UTC
MARKED AS SPAM
Comment 68 call girl mumbai 2024-04-07 08:50:44 UTC
MARKED AS SPAM
Comment 69 Mumbai Escorts 2024-04-10 15:06:26 UTC
MARKED AS SPAM
Comment 70 Tina Ji 2024-04-11 07:48:57 UTC
MARKED AS SPAM
Comment 71 Tina Ji 2024-04-11 07:49:54 UTC
MARKED AS SPAM
Comment 72 Monaroy 2024-04-17 18:18:44 UTC
MARKED AS SPAM
Comment 73 anna 2024-05-15 12:31:08 UTC
MARKED AS SPAM
Comment 74 punebeauties1 2024-06-03 04:55:44 UTC
MARKED AS SPAM
Comment 75 Girls Club 2024-06-05 13:48:46 UTC
MARKED AS SPAM
Comment 76 Heera 2024-06-05 14:32:38 UTC
MARKED AS SPAM
Comment 77 Payal Kapoor 2024-06-08 06:36:54 UTC
MARKED AS SPAM
Comment 78 Nisha Bhat 2024-06-08 12:01:19 UTC
MARKED AS SPAM
Comment 79 Goa.Sookacity 2024-06-14 17:39:55 UTC
MARKED AS SPAM
Comment 80 Diya Khanna 2024-06-15 10:28:32 UTC
MARKED AS SPAM
Comment 81 Tanya 2024-06-17 05:55:21 UTC
MARKED AS SPAM
Comment 82 Tanya 2024-06-17 05:56:48 UTC
MARKED AS SPAM
Comment 83 Kolkata Dream Escorts 2024-06-18 09:05:08 UTC
MARKED AS SPAM
Comment 84 Mumbai Escorts Sana 2024-06-19 23:49:13 UTC
MARKED AS SPAM
Comment 85 swati sharma 2024-06-20 08:30:46 UTC
MARKED AS SPAM
Comment 86 swati sharma 2024-06-20 08:32:10 UTC
MARKED AS SPAM
Comment 87 Poonampanday 2024-06-20 12:59:32 UTC
MARKED AS SPAM
Comment 88 swati sharma 2024-06-24 05:44:30 UTC
MARKED AS SPAM
Comment 89 Hanah Sen 2024-06-24 06:29:24 UTC
MARKED AS SPAM
Comment 90 Miss Nidhi 2024-06-24 06:59:00 UTC
MARKED AS SPAM
Comment 91 Dolly Saxena 2024-06-24 07:30:33 UTC
MARKED AS SPAM
Comment 92 Zayda Khan 2024-06-24 07:41:36 UTC
MARKED AS SPAM
Comment 93 Arzy Singh 2024-06-24 07:55:07 UTC
MARKED AS SPAM
Comment 94 Mumbai Heaven 2024-06-24 08:09:41 UTC
MARKED AS SPAM
Comment 95 Iyra Khan 2024-06-24 08:20:09 UTC
MARKED AS SPAM
Comment 96 bhopalgirlhub 2024-07-01 12:02:18 UTC
MARKED AS SPAM
Comment 97 indiamachinemart.in@gmail.com 2024-07-06 07:20:25 UTC
MARKED AS SPAM
Comment 98 Devayani Kapoor 2024-07-07 16:25:29 UTC
MARKED AS SPAM
Comment 99 priya sharma 2024-07-08 18:38:33 UTC
MARKED AS SPAM
Comment 100 priya sharma 2024-07-08 18:40:09 UTC
MARKED AS SPAM
Comment 101 Nia Sharma 2024-07-10 10:44:08 UTC
MARKED AS SPAM
Comment 102 Preeti Patel in Raipur 2024-07-13 11:37:29 UTC
MARKED AS SPAM
Comment 103 Sanya Singh 2024-07-18 09:28:14 UTC
MARKED AS SPAM
Comment 104 parulbakshi 2024-07-18 12:30:52 UTC
MARKED AS SPAM
Comment 105 parulbakshi 2024-07-18 12:31:14 UTC
MARKED AS SPAM
Comment 106 sakshimahajan 2024-07-19 10:27:34 UTC
MARKED AS SPAM
Comment 107 sakshimahajan 2024-07-19 10:32:24 UTC
MARKED AS SPAM
Comment 108 Gini Sharma 2024-07-19 20:16:55 UTC
MARKED AS SPAM
Comment 109 Gini Sharma 2024-07-19 20:17:24 UTC
MARKED AS SPAM
Comment 110 Gini Sharma 2024-07-19 20:17:38 UTC
MARKED AS SPAM
Comment 111 Gini Sharma 2024-07-19 20:18:16 UTC
MARKED AS SPAM
Comment 112 Gini Sharma 2024-07-19 20:18:38 UTC
MARKED AS SPAM
Comment 113 Sonali Das 2024-07-20 04:33:15 UTC
MARKED AS SPAM
Comment 114 Sonali Das 2024-07-20 04:34:24 UTC
MARKED AS SPAM
Comment 115 Bharti sharma 2024-07-20 06:54:59 UTC
MARKED AS SPAM
Comment 116 Preeti Patel in Raipur 2024-07-20 11:30:05 UTC
MARKED AS SPAM
Comment 117 Gini Sharma 2024-07-21 09:42:17 UTC
MARKED AS SPAM
Comment 118 Gini Sharma 2024-07-21 09:43:15 UTC
MARKED AS SPAM
Comment 119 Gini Sharma 2024-07-21 09:43:55 UTC
MARKED AS SPAM
Comment 120 posis90611 2024-07-21 12:50:25 UTC
MARKED AS SPAM
Comment 121 jackykona 2024-07-21 13:35:31 UTC
MARKED AS SPAM
Comment 122 jackykona 2024-07-21 13:42:13 UTC
MARKED AS SPAM
Comment 123 jackykona 2024-07-21 13:48:45 UTC
MARKED AS SPAM
Comment 124 jackykona 2024-07-21 13:49:06 UTC
MARKED AS SPAM
Comment 125 jackykona 2024-07-21 13:53:16 UTC
MARKED AS SPAM
Comment 126 Andyyyyy 2024-07-21 13:58:04 UTC
MARKED AS SPAM
Comment 127 jackykona 2024-07-21 13:58:52 UTC
MARKED AS SPAM
Comment 128 jackykona 2024-07-21 14:08:51 UTC
MARKED AS SPAM
Comment 129 jackykona 2024-07-21 14:14:37 UTC
MARKED AS SPAM
Comment 130 jackykona 2024-07-21 14:22:24 UTC
MARKED AS SPAM
Comment 131 Andyyyyy 2024-07-21 14:26:20 UTC
MARKED AS SPAM
Comment 132 jackykona 2024-07-21 14:30:03 UTC
MARKED AS SPAM
Comment 133 jackykona 2024-07-21 14:39:40 UTC
MARKED AS SPAM
Comment 134 jackykona 2024-07-21 14:43:24 UTC
MARKED AS SPAM
Comment 135 jackykona 2024-07-21 14:51:39 UTC
MARKED AS SPAM
Comment 136 jackykona 2024-07-21 14:57:47 UTC
MARKED AS SPAM
Comment 137 Andyyyyy 2024-07-21 15:03:59 UTC
MARKED AS SPAM
Comment 138 Andyyyyy 2024-07-21 15:16:49 UTC
MARKED AS SPAM
Comment 139 Andyyyyy 2024-07-21 15:24:48 UTC
MARKED AS SPAM
Comment 140 Andyyyyy 2024-07-21 15:31:41 UTC
MARKED AS SPAM
Comment 141 Andyyyyy 2024-07-21 15:46:19 UTC
MARKED AS SPAM
Comment 142 Sneha 2024-07-21 20:49:24 UTC
MARKED AS SPAM
Comment 143 soni 2024-07-22 11:14:46 UTC
MARKED AS SPAM
Comment 144 Kudilo 2024-07-22 19:11:33 UTC
MARKED AS SPAM
Comment 145 Billi Bajaj 2024-07-23 06:19:31 UTC
MARKED AS SPAM
Comment 146 Billi Bajaj 2024-07-23 06:20:51 UTC
MARKED AS SPAM
Comment 147 Billi Bajaj 2024-07-23 06:21:51 UTC
MARKED AS SPAM
Comment 148 Billi Bajaj 2024-07-23 06:22:35 UTC
MARKED AS SPAM
Comment 149 Zara Khalifa 2024-07-24 11:34:58 UTC
MARKED AS SPAM
Comment 150 Zara Khalifa 2024-07-24 11:38:26 UTC
MARKED AS SPAM
Comment 151 bhopalgirlhub 2024-07-26 12:54:53 UTC
MARKED AS SPAM
Comment 152 Nishaverma 2024-07-27 09:49:58 UTC
MARKED AS SPAM
Comment 153 Aisha Bansal 2024-07-28 02:44:37 UTC
MARKED AS SPAM
Comment 154 phillipamariee 2024-07-28 05:21:41 UTC
MARKED AS SPAM
Comment 155 Aakriti Singh 2024-07-28 07:33:37 UTC
MARKED AS SPAM
Comment 156 Gini Sharma 2024-07-29 10:18:24 UTC
MARKED AS SPAM
Comment 157 Gini Sharma 2024-07-29 10:18:43 UTC
MARKED AS SPAM
Comment 158 Gini Sharma 2024-07-29 10:19:12 UTC
MARKED AS SPAM
Comment 159 Gini Sharma 2024-07-29 10:19:32 UTC
MARKED AS SPAM
Comment 160 Gini Sharma 2024-07-29 10:19:53 UTC
MARKED AS SPAM
Comment 161 topgirlsfun 2024-07-29 10:52:27 UTC
MARKED AS SPAM
Comment 162 Zara Khalifa 2024-07-31 09:56:03 UTC
MARKED AS SPAM
Comment 163 Zara Khalifa 2024-07-31 10:01:30 UTC
MARKED AS SPAM
Comment 164 Zara Khalifa 2024-07-31 10:04:23 UTC
MARKED AS SPAM
Comment 165 Zara Khalifa 2024-07-31 10:13:52 UTC
MARKED AS SPAM
Comment 166 Preeti Patel 2024-07-31 13:17:52 UTC
MARKED AS SPAM
Comment 167 Sneha 2024-08-02 16:29:16 UTC
MARKED AS SPAM
Comment 168 Damir 2024-08-02 18:55:02 UTC
MARKED AS SPAM
Comment 169 Damir 2024-08-02 19:05:40 UTC
MARKED AS SPAM
Comment 170 Sneha 2024-08-02 21:25:21 UTC
MARKED AS SPAM
Comment 171 Kudilo 2024-08-02 21:52:45 UTC
MARKED AS SPAM
Comment 172 Kudilo 2024-08-02 22:01:49 UTC
MARKED AS SPAM
Comment 173 Kudilo 2024-08-02 22:02:14 UTC
MARKED AS SPAM
Comment 174 Misty 2024-08-06 04:40:38 UTC
MARKED AS SPAM
Comment 175 Misty 2024-08-06 04:45:34 UTC
MARKED AS SPAM
Comment 176 Pihu Sharma 2024-08-07 17:33:21 UTC
MARKED AS SPAM
Comment 177 shkokkaescort 2024-08-09 09:59:44 UTC
MARKED AS SPAM
Comment 178 misskolkata 2024-08-09 11:46:51 UTC
MARKED AS SPAM
Comment 179 misskolkata 2024-08-09 13:15:38 UTC
MARKED AS SPAM
Comment 180 agency 2024-08-13 14:55:53 UTC
MARKED AS SPAM
Comment 181 agency 2024-08-13 14:57:00 UTC
MARKED AS SPAM
Comment 182 agency 2024-08-13 14:59:20 UTC
MARKED AS SPAM
Comment 183 Mark Linimon freebsd_committer freebsd_triage 2024-08-13 21:14:16 UTC
Triage: attempt to de-orbit this PR.

Original title: "USB ethernet device with NFS mount causes boot hang (startup order)"
Original assignee: hans-petter (RIP)
Comment 184 Rupa 2024-08-16 14:11:32 UTC
MARKED AS SPAM
Comment 185 Michael Haydon 2024-08-22 13:31:45 UTC
MARKED AS SPAM
Comment 186 brian 2024-08-23 12:50:48 UTC
MARKED AS SPAM
Comment 187 model2night 2024-08-26 09:23:14 UTC
MARKED AS SPAM
Comment 188 model2night 2024-08-26 09:25:46 UTC
MARKED AS SPAM
Comment 189 model2night 2024-08-26 09:28:36 UTC
MARKED AS SPAM
Comment 190 model2night 2024-08-26 09:31:12 UTC
MARKED AS SPAM
Comment 191 Rhea Sharma 2024-08-28 05:04:43 UTC
MARKED AS SPAM
Comment 192 Chanda Gulabo 2024-08-28 08:38:21 UTC
MARKED AS SPAM
Comment 193 Tanyabhati 2024-08-30 06:29:10 UTC
MARKED AS SPAM
Comment 194 Tanyabhati 2024-08-30 06:29:59 UTC
MARKED AS SPAM
Comment 195 Tanyabhati 2024-08-30 06:30:25 UTC
MARKED AS SPAM
Comment 196 Tanyabhati 2024-08-30 06:30:45 UTC
MARKED AS SPAM
Comment 197 Tanyabhati 2024-08-30 06:30:57 UTC
MARKED AS SPAM
Comment 198 watches 2024-08-30 07:30:54 UTC
MARKED AS SPAM
Comment 199 watches 2024-08-30 07:39:39 UTC
MARKED AS SPAM
Comment 200 watches 2024-08-30 07:39:59 UTC
MARKED AS SPAM
Comment 201 Chennai Escorts 2024-09-04 06:59:30 UTC
MARKED AS SPAM
Comment 202 sheetaldubay 2024-09-04 07:15:19 UTC
MARKED AS SPAM
Comment 203 Codella Biz 2024-09-05 09:57:30 UTC
MARKED AS SPAM
Comment 204 Rhea Kapoor 2024-09-05 13:00:23 UTC
MARKED AS SPAM
Comment 205 Preeti Kaur 2024-09-08 10:24:02 UTC
MARKED AS SPAM
Comment 206 joplinjason 2024-09-11 11:49:10 UTC
MARKED AS SPAM
Comment 207 zirakpurcallgirls 2024-09-13 04:17:08 UTC
MARKED AS SPAM
Comment 208 zirakpurcallgirls 2024-09-13 04:17:45 UTC
MARKED AS SPAM
Comment 209 anushkadas 2024-09-17 05:27:06 UTC
MARKED AS SPAM
Comment 210 joispa 2024-09-17 11:15:28 UTC
MARKED AS SPAM
Comment 211 anisha roy 2024-09-17 13:26:06 UTC
MARKED AS SPAM
Comment 212 anisha roy 2024-09-17 13:26:22 UTC
MARKED AS SPAM
Comment 213 anisha roy 2024-09-17 13:26:33 UTC
MARKED AS SPAM
Comment 214 anisha roy 2024-09-17 13:27:19 UTC
MARKED AS SPAM
Comment 215 cgkoot 2024-10-01 09:19:08 UTC
MARKED AS SPAM
Comment 216 Cgnight India 2024-10-03 17:36:40 UTC
MARKED AS SPAM
Comment 217 bangaloreescort 2024-10-09 07:42:35 UTC
MARKED AS SPAM
Comment 218 payal 2024-10-22 19:11:27 UTC
MARKED AS SPAM
Comment 219 Pooja Sharma 2024-10-24 09:23:30 UTC
MARKED AS SPAM
Comment 220 Pooja Sharma 2024-10-24 09:23:55 UTC
MARKED AS SPAM
Comment 221 Pooja Sharma 2024-10-24 09:24:43 UTC
MARKED AS SPAM
Comment 222 Pooja Sharma 2024-10-24 09:25:19 UTC
MARKED AS SPAM
Comment 223 Monica Night 2024-10-26 07:22:56 UTC
MARKED AS SPAM
Comment 224 Monica Night 2024-10-26 07:25:05 UTC
MARKED AS SPAM
Comment 225 Soniya Mehta 2024-10-27 05:21:24 UTC
MARKED AS SPAM
Comment 226 Jeemmy Singh 2024-10-28 05:56:55 UTC
MARKED AS SPAM