Fame and Infamy

The comment you are replying to does not exist.
in

Many of you know I have been working extremely hard to make some quality contributions to the Linux kernel. This can be a tough environment to work it, but also very rewarding. For the last couple of months I've been working on a patch series to allow for the requeueing of Priority Inheritance aware futexes in order to make glibc pthread_condvars PI aware and avoid some of the problems with the current implementation. I recently sent out an early copy of the patch series to be reviewed by a few core people, not even labeling the mails with [PATCH] as is customary. Apparently that didn't stop someone from finding my new tongue-in-cheek error code for dealing with misbehaving user applications. I was cited on LWN's Quotes of the Week, along with Steven Rostedt, Linus Torvalds, and Andrew Morton. I was the only one, however, to earn a nickname for my efforts. Darren "graceful" Hart, thank you very much :-)

If you don't have an LWN account, I'll try and post a new link once it's publicly visible, but for now, the interesting code segment mentioned in the article follows:

+	/*
+	 * The pifutex has an owner, make sure it's us, if not complain
+	 * to userspace.
+	 * FIXME_LATER: handle this gracefully
+	 */
+	pid = curval & FUTEX_TID_MASK;
+	if (pid && pid != task_pid_vnr(current))
+		return -EMORON;

Comments

hi

I meant to send you a note earlier this week to wish you a happy birthday. Sorry I missed it! Hope you had a good one. On St. Patty's Day somehow the conversation with the kids turned into a "wouldn't it be cool to have a birthday today" disscussion. I told them I knew someone with a St. Patty's Day birthday. They wondered if green was your favorite color. I smiled at the suggestion and replied "he prefers to wear black for his birthday." Of course then they were concerned that you would be pinched on your birthday. I assured them that you would be just fine. Anyway happy (late) birthday - you couldn't possibly expect me to ever do anything on time, could you? It wouldn't be a true birthday wish from me if it wasn't late. Can't wait to see pics of the new baby .... when it gets here. Tell Mary Lou I said hello.

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Lines and paragraphs break automatically.
  • You may use [acidfree:xx] tags to display acidfree videos or images inline.

More information about formatting options

Back to top