From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754650Ab0DBUsi (ORCPT ); Fri, 2 Apr 2010 16:48:38 -0400 Received: from toro.web-alm.net ([62.245.132.31]:44742 "EHLO toro.web-alm.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753798Ab0DBUsa (ORCPT ); Fri, 2 Apr 2010 16:48:30 -0400 Message-Id: <20100402204018.575140584@osadl.org> User-Agent: quilt/0.48-1 Date: Fri, 02 Apr 2010 22:40:18 +0200 From: Carsten Emde To: Andrew Morton Cc: Arjan van de Veen , Thomas Gleixner , Pradyumna Sampath , LKML , RT-users , Carsten Emde Subject: [PATCH 0/2] Convert message queue timeouts to hrtimer Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The message queue system calls that may timeout, mq_timedsend() and mq_timedreceive(), still use the old jiffie-based timer interface. Convert them to hrtimer. The first patch provides the hrtimer infrastructure, the second patch does the actual conversion to hrtimer. Carsten.