klange changed the topic of #osdev to: Operating System Development || Don't ask to ask---just ask! || For 3+ LoC, use a pastebin (for example https://gist.github.com/) || Stats + Old logs: http://osdev-logs.qzx.com New Logs: https://libera.irclog.whitequark.org/osdev || Visit https://wiki.osdev.org and https://forum.osdev.org || Books: https://wiki.osdev.org/Books
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
heat has quit [Quit: Client closed]
Arthuria has joined #osdev
foudfou has quit [Remote host closed the connection]
Matt|home has quit [Quit: Leaving]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
neo has quit [Read error: Connection reset by peer]
<nikolar> ok can someone tell me why i can ping my local network, but whenever i try to ping something outside it, all my packets start getting dropped
<nikolar> this is the pdp thing
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
<kof673> well there is whatever simh is doing, whatever the host os is doing, and whatever the guest os is doing (does route/arp/etc. look good?)
<kof673> i assume "something outside" means interwebz
<nikolar> yeah
edr has quit [Quit: Leaving]
nikolapdp has joined #osdev
<nikolapdp> so i am not sure if there was something missing
<nikolapdp> but i managed to connect now
<nikolapdp> though now that i've enabled the serial multiplexer, i keep getting this
<nikolapdp> coremap: overflow, lost 67 clicks at 016556
nikolapdp has quit [Remote host closed the connection]
nikolapdp has joined #osdev
nikolapdp has quit [Remote host closed the connection]
nikolapdp has joined #osdev
<nikolapdp> trying to run vmstat, but i am getting: no /vmunix namelist
<nikolapdp> same story for iostat: dk_busy not found in /vmunix namelist
nikolapdp has quit [Remote host closed the connection]
pog has quit [Ping timeout: 264 seconds]
Matt|home has joined #osdev
Yoofie6 has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
<kof673> makes me think the kernel was not compiled with some needed option
nikolapdp has joined #osdev
<nikolapdp> well now it's working
<nikolapdp> and to get it working i had to add a line to netstart which initialized the inteface
<nikolapdp> for some reason
<nikolapdp> didn't have to do it before i changed the bus/network card
<kof673> what does the c compiler look like there? is it c89-ish? k&r only?
<nikolapdp> pre ansi
<kof673> does it have struct surely?
<nikolapdp> well yeab
MiningMarsh has quit [Ping timeout: 268 seconds]
MiningMarsh has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
navi has quit [Ping timeout: 240 seconds]
Matt|home has quit [Ping timeout: 264 seconds]
azonenberg has joined #osdev
<azonenberg> So I'm trying to design a consistency self-test for a key-value store. Trying to figure out what makes sense for the actual test algorithm
<azonenberg> Specifically, the goal is to ensure that if I abort midway through a write, I won't ever get corrupted or invalid data back
<azonenberg> i always get atomically the old or new value
<azonenberg> So i need to design a sequence of (name, value) tuples that I can write to the KVS repeatedly such that it's possible to determine, given only a snapshot of the KVS, whether any corruption has occurred
<azonenberg> My initial thought is to have two objects A and B that I initially write with the values 0 and 1 respectively, then i ping-pong increment each one by 2
<azonenberg> so you have 0/1 then 2/1 then 2/3 then 4/3
<azonenberg> then repeat the value a few times within the object to pad it out to a larger size so 4 would actually be say 0x00000004 00000004 00000004 00000004
<Mondenkind> azonenberg: maybe do a simple perfect hash (sth like the murmurhash finaliser should be fine) to get a lil more entropy in there
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
Arthuria has quit [Killed (NickServ (GHOST command used by Guest684531))]
Arthuria has joined #osdev
Arthuria has quit [Ping timeout: 264 seconds]
Arthuria has joined #osdev
Arthuria has quit [Killed (NickServ (GHOST command used by Guest684531))]
Arthuria has joined #osdev
Arthuria has quit [Ping timeout: 264 seconds]
eck has quit [Quit: PIRCH98:WIN 95/98/WIN NT:1.0 (build 1.0.1.1190)]
eck has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
eck has quit [Quit: PIRCH98:WIN 95/98/WIN NT:1.0 (build 1.0.1.1190)]
eck has joined #osdev
pebble has joined #osdev
sympt has quit [Ping timeout: 252 seconds]
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
DuckWah has joined #osdev
h3xc0re has joined #osdev
h3xc0re has quit [Quit: Leaving]
goliath has joined #osdev
Shaddox404 has joined #osdev
zetef has joined #osdev
<geist> nikolar: oh woot. what was the key thing that had it working?
<nikolar> Well first I switched to unibus
<nikolar> And 11/70 like you suggested
<nikolar> Set up dz0
<nikolar> Also realized that you need to update netnix along with unix
<nikolar> I kind of forgot that it's not a separate kernel kek
<geist> yah
<geist> yeah it's sort of like process 1 i guess. it must do some sort of thunking style context switch between it
<nikolar> Another thing is that I had to switch to a unibus Ethernet card
<nikolar> Which didn't just work (tm)
<nikolar> I could ping withing my lan but not outside (ie internet)
zetef has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
gbowne1 has quit [Quit: Leaving]
<nikolar> So I added the ifconfig line to setup the interface to /etc/netstart
<nikolar> And that finally got it to work
<nikolar> Though when I am not throttled, I get the `coremap: overflow, lost 67 clicks at 016556` type of lines all the time
<geist> ah yeah. that's right. been a while since i configured mine
<nikolar> Presumably related to the serial speed
<nikolar> When I throttled, those seem to go away
<geist> which network eth did you end up using?
<nikolar> And I couldn't get vmstat and iostat to work :(
<geist> i'm using qe0 on my physical one
<nikolar> it's de0
<nikolar> qe0 just worked out of the box
<geist> but it's qbus, i guess
<nikolar> After setting the hostname and default route and network mask in the netstart
<nikolar> It is, yeah
<nikolar> I might need to recompile vmstat and iostat for them to work with the current kernel, I'm not sure about that
<nikolar> They don't work after enabling the option that specifically references them
<kazinsal> ah for the days when networking was "simple" and you didn't have to worry about a bajillion threats. just give your pdp-11 an internet address and start calling up other institutes
<nikolar> Kek yeah
<kazinsal> sometimes I wish I were doing the job I do now, but 40 years ago
<geist> yeah i dunno. my vmstat/iostat work, but i also updated mine to version 481. what version are you on?
<geist> read /VERSION
<nikolar> Lol yeah kind of feel the same
<nikolar> It's unpatched, or at least should be
<nikolar> I'll check in a bit, not at my computer right now
<nikolar> I'm just curious why qe0 worked without adding ifconfig to netstart but de0 didn't
Shaddox404 is now known as [AFK]Shadow404
[AFK]Shadow404 has quit [Quit: Connection Terminated!]
[AFK]Shadow404 has joined #osdev
[AFK]Shadow404 has left #osdev [#osdev]
gsekulski has joined #osdev
<nikolapdp> geist: actually
<nikolapdp> Current Patch Level: 195
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
DuckWah has quit [Quit: Connection closed]
op has joined #osdev
netbsduser has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
nikolapdp has quit [Remote host closed the connection]
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
pebble has quit [Ping timeout: 264 seconds]
GeDaMo has joined #osdev
foudfou has quit [Remote host closed the connection]
dalme has joined #osdev
foudfou has joined #osdev
nikolapdp has joined #osdev
<nikolapdp> ls
<nikolapdp> well i got the vmstat to work
<nikolapdp> the config script for some reason didn't work
<nikolapdp> so i hardcoded the define in the makefile
<nikolapdp> oh no
<nikolapdp> i was being silly
<nikolapdp> i was overwriting the generated makefile lol
<nikolapdp> every time i checked, the new and old were the same, so i stopped checking :)
nikolapdp has quit [Remote host closed the connection]
<zid> I pluged a usb hdd in and now my mouse is totally ass
<zid> not sure if windows is just lagging to fuck, or if the hdd is kicking out so much EMF that the signal has gone to pants
<zid> okay it's the latter, weird, and lame
<nikolar> kek
nikolapdp has joined #osdev
bauen1 has quit [Ping timeout: 240 seconds]
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
heat has joined #osdev
navi has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
bauen1 has joined #osdev
rustyy has quit [Quit: leaving]
rustyy has joined #osdev
op has quit [Remote host closed the connection]
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
gsekulski has left #osdev [#osdev]
Left_Turn has joined #osdev
FreeFull has quit [Ping timeout: 240 seconds]
FreeFull has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
edr has joined #osdev
nikolapdp has quit [Ping timeout: 264 seconds]
spareproject has joined #osdev
nikolapdp has joined #osdev
vdamewood has joined #osdev
exark has quit [Quit: quit]
exark has joined #osdev
Arthuria has joined #osdev
linear_cannon has quit [Read error: Connection reset by peer]
linear_cannon has joined #osdev
SGautam has joined #osdev
gsekulski has joined #osdev
[AFK]Shadow404 has joined #osdev
[AFK]Shadow404 has quit [Quit: Connection Terminated!]
foudfou has quit [Remote host closed the connection]
Matt|home has joined #osdev
foudfou has joined #osdev
josuedhg has joined #osdev
heat has quit [Quit: Client closed]
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
xenos1984 has quit [Ping timeout: 268 seconds]
xenos1984 has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
goliath has quit [Quit: SIGSEGV]
Arthuria has quit [Ping timeout: 268 seconds]
zxrom has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
bauen1 has quit [Ping timeout: 264 seconds]
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
<vin> Is there a way to explicitly hint the kernel (say linux) to swap out a particular set of pages to SSD?
rustyy has quit [Ping timeout: 268 seconds]
xenos1984 has quit [Ping timeout: 268 seconds]
<mcrod> newlib sucks
<mcrod> jesus fucking christ
<nikolapdp> lol
<mcrod> for some strange reason it’s insisting on using a coprocessor instruction on my cortex-m0+ board
<zid> that's the mcrod we know and love <3
<mcrod> no matter what’s going on
<zid> rust also insists on using sse on x86
<mcrod> i can’t believe ARM shipped this
<nikolapdp> kek
<mcrod> i call _start
<mcrod> and it dies on _fini which is to handle destructors
<mcrod> and the first instruction isn’t valid for m0+
<mcrod> i have to now compile my own newlib to resolve this
<nikolapdp> to be honest, that doesn't dound like a newlib issue
<mcrod> you say that
<mcrod> but I’ve pumped -mthumb and -mcpu=cortex-m0plus everywhere
<mcrod> and STILL it’s giving me shit
<zid> linker script filling .fini with dross?
<mcrod> what’s dross
<zid> an english word meaning.. crap
<zid> but aren't you supposed to erm
<zid> treat .fini as an array and call each pointer
<zid> not run .fini
<mcrod> ask newlib
<zid> but you're doing the former
<zid> you said you called
<mcrod> my only crime is calling _start();
<mcrod> that calls __libc_init_array()(
<mcrod> phone sucks
<zid> nikolapdp: good news, once I finished putting the 800GB of serbian goat porn onto that hdd my mouse started working again
<mcrod> you’re supposed to call _start()
<nikolapdp> oh nice
<nikolapdp> some string emf
<zid> I assume it must be a shitty usb3 cable
<nikolapdp> eh could be
<zid> cus the hdd itself should be just a standard wd inside a plastic tub
<zid> and standard wds don't have bad EMF issues
gog has joined #osdev
<zid> so I guess the usb3 cable is just completely lacking the tinfoil shield
<nikolapdp> does usb3 even run at speeds that cause emf issues at those frequenceis
<nikolapdp> i guess there's always ripple in the signal
<zid> look at the transfer speed
<zid> it's in the gigabits range
<zid> so it nicely intefers with wifi
<nikolapdp> nice
<nikolapdp> i forgor what speeds usb3 runs at
<nikolapdp> or whatever they are calling it these days
<zid> pa5bit
<zid> 5gbit
<zid> exactly 5ghz wifi :P
<nikolapdp> kek
<zid> or a very strong 2nd harmonic of 2.4
<nikolapdp> yeah that too would do it
<nikolapdp> but for some reason, i remember that usb2 is 480mbit/s lol
SGautam has quit [Quit: Connection closed for inactivity]
xenos1984 has joined #osdev
m257 has joined #osdev
node1 has joined #osdev
node1 has quit [Client Quit]
<mcrod> now i can’t connect to the evil board
<mcrod> eval
<mcrod> close enough
<nikolapdp> kek
node1 has joined #osdev
gsekulski has quit [Ping timeout: 264 seconds]
node57 has joined #osdev
node1 has quit [Ping timeout: 250 seconds]
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
m257 has quit [Quit: Client closed]
foudfou has quit [Remote host closed the connection]
m257 has joined #osdev
foudfou has joined #osdev
gog is now known as pog
m257 has quit [Ping timeout: 250 seconds]
aejsmith has quit [Remote host closed the connection]
aejsmith has joined #osdev
rustyy has joined #osdev
aejsmith has quit [Quit: Lost terminal]
aejsmith has joined #osdev
node1 has joined #osdev
node57 has quit [Ping timeout: 250 seconds]
node77 has joined #osdev
node1 has quit [Ping timeout: 250 seconds]
node1 has joined #osdev
node77 has quit [Ping timeout: 250 seconds]
j00ru has joined #osdev
tjf has quit [Quit: l8r]
tjf has joined #osdev
navi has quit [Read error: Connection reset by peer]
josuedhg has quit [Quit: Client closed]
GeDaMo has quit [Quit: 0wt 0f v0w3ls.]
bauen1 has joined #osdev
node53 has joined #osdev
Mutabah has quit [Ping timeout: 252 seconds]
node1 has quit [Ping timeout: 250 seconds]
node53 has quit [Client Quit]
node1 has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
spareproject has quit [Remote host closed the connection]
foudfou has joined #osdev
node41 has joined #osdev
node1 has quit [Ping timeout: 250 seconds]
node1 has joined #osdev
node1 has quit [Write error: Broken pipe]
node1 has joined #osdev
node41 has quit [Ping timeout: 250 seconds]
Left_Turn has quit [Ping timeout: 256 seconds]
goliath has joined #osdev
phoooo has joined #osdev
phoooo has quit [Client Quit]
gbowne1 has joined #osdev
Left_Turn has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
xenos1984 has quit [Read error: Connection reset by peer]
frkzoid has quit [Read error: Connection reset by peer]
zxrom has quit [Quit: Leaving]
zxrom has joined #osdev
xenos1984 has joined #osdev
<bslsk05> ​github.com: setuptools/setuptools/config/_validate_pyproject/fastjsonschema_validations.py at 5cbf12a9b63fd37985a4525617b46576b8ac3a7b · pypa/setuptools · GitHub
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
Left_Turn has quit [Read error: Connection reset by peer]
frkazoid333 has joined #osdev
node1 has quit [Ping timeout: 250 seconds]
goliath has quit [Quit: SIGSEGV]
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
Mutabah has joined #osdev
foudfou has quit [Remote host closed the connection]
foudfou has joined #osdev
navi has joined #osdev
<dostoyevsky2> Ermine: that Jason dude likes his one-liners