Linux 4.11 Delayed For a Week (theregister.co.uk) 48
Linux kernel creator Linus Torvalds said over the weekend that v4.11 version of Linux has hit a speed bump in the form of "NVMe power management that apparently causes problems on some machines." The Register adds: "It's not entirely clear what caused the [NVMe] issue (it wasn't just limited to some NVMe hardware, but also particular platforms), but let's test it." Which sounds like a good idea, given that flash memory on the PCIe bus is increasingly mainstream. That problem and "a couple of really annoying" bugs mean that Torvalds has decided to do an eighth release candidate for Linux 4.11. "I did get fixes for the issues that popped up, so I could have released 4.11 as-is," Torvalds wrote, "but it just doesn't feel right."
Re: (Score:1)
Nice copypasta.
Re: (Score:2)
Go To Statement Considered Harmful - Edsger W. Dijkstra
Re: (Score:3)
That text doesn't really apply to modern programming practices (with modern defined as ~70's forward). Go to statements are mostly used for exception handling and breaking out of nested loops, for those uses they are hard to replace in a good way. The result of removing them will almost always be more verbose and harder to read.
Re: (Score:2)
do{
if (!foo){break;}
}while(0);
the hidden goto :-)
Re: (Score:2)
Or something like that.
Re: (Score:2)
do{
if (!foo){break;}
}while(0);
the hidden goto :-)
do{
do{
if (!foo){break;}
}while(somecond1);
}while(somecond2);
So, with nested while, how do you exit ???
Actually my statement was more that people *effectively* use goto without even realizing they are.
functionally my example is no different than:
//begin block :CLEANUP_BLOCK
{
if (!foo){goto CLEANUP_BLOCK;}
}
^/. is absolutely intent on making my colon prefix collapse up all the whitespace to the curly... no idea why.
Now, in my example case there is no condition, as the do-while construct is not actually being used as a loop, thus would not (validly) match your example.
in your example case I don't know that I would even want to do a goto escape as you're doing some doubl
Re: (Score:2)
Re: (Score:2)
>"As things stand now, I can understand using Linux in academia to compile simple "Hello World" style programs and learn C programming, but I'm afraid that for anything more than a hobby OS, Windows 8/10 are your only choices."
Wow- you will be rightfully modded down to -100 pretty quickly. Apparently you don't know much about the world out there.... the majority of the Internet is run by Linux servers, and has been for many, many years now. Almost all the S&P500 run Linux to various degrees in their IT. You think Linux doesn't support journaled filesystems? SMP? Seriously??? You think An MS-Windows box of ANY sort can do the work of 3 Linux boxes???!!! LOL!
You are either completely clueless or are an MS-shill or both. Not even many self-respecting professional MS-Windows administrators with Linux exposure would agree with anything you said.
Welcome to the internet - the first time I saw that copy-pasta was in 2002.
Re: (Score:2)
Hehehe...Haven't seen this one for a while. Needed that laugh, but you can troll better then that.
Re: (Score:2)
Also, the comment text no longer fills most of the browser window. Now a third of the space is taken up with the right hand column, which is useless on the discussion pages. I'd rather have more space for comment text. In order to get it back, I have the make the browser window substantially wider.
Re: (Score:2)
Yeah, the layout has been weird like that for at least a few days - I get a little box on the right with my username, ID number, and Karma score and that is it (maybe it's an ad location?).
Good Idea (Score:2)
Re: (Score:2)
I think the NVMe issue is a showstopper, which is why they're taking time to fix it. If anyone isn't familiar, NVMe is an SSD attached to the PCIe bus - given we've already maxed out SATA3. NVMe bests that with the newest SSDs pushing 2GB/sec+ in reads and 1GB/sec+ in writes (SATA3 was limited to 540MB/sec, which
Re: (Score:2)
If systemd causes problems, use a non-systemd distribution. Devuan was on the front page yesterday, but Gentoo is optionally systemd free (well, so is Debian for now), and Slackware is free of systemd. There are other choices. (I don't consider Gentoo acceptable unless you have multiple computers on your desk, as the install instructions are on multiple html pages, and needing to print those out is unreasonable.)
As for Firefox, I haven't experienced the problems you are reporting. I'm using the Debian d
Re: (Score:2)
Having to print out the html pages is unreasonable. Having to print a pdf would not be unreasonable.
Possibly after I'd installed Gentoo once or twice I'd feel confident enough that I wouldn't think I needed the instructions in front of me as I did it, but just now I would want the full instructions. Which is why I said "a second computer on your desk".
P.S.: Why you format your disk, and have a boot disk, it's difficult to tell what info you are going to need to proceed in a way you haven't previously gon
Ah yes (Score:2)
systemd delay? (Score:5, Funny)
[ **] A start job is running for kernel-4.11-release (1.2 day / 7 days)
IntranetLinux For Small Business - For nostalgia's (Score:3)
In the same vein as the
Linux 3.11 for workgroups release, this release should be called
Linux 4.11 IntranetLinux For Small Business...
(and yes, I know that a la latter stage, netware was just a userland component on top of linux...)
What's the rush? (Score:2)