From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752914AbYBCSeX (ORCPT ); Sun, 3 Feb 2008 13:34:23 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751156AbYBCSeO (ORCPT ); Sun, 3 Feb 2008 13:34:14 -0500 Received: from fg-out-1718.google.com ([72.14.220.159]:24536 "EHLO fg-out-1718.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750816AbYBCSeM (ORCPT ); Sun, 3 Feb 2008 13:34:12 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=to:cc:subject:date:message-id:x-mailer:from; b=jyE3qbmVqplnIYKSqXnwM9Xc8/dewj2dYQBqo++g2zXu6a/htYwXgZ8Z1XdaqwANL4Jsz0QCezHdEFBmBvGpMbx5VkzWGgXcwAtjJkC0JAP1qEwvMM1zL3CxcwMYEXDkJfSeGv/2SKTtn9Tt0BFQtgocA17zlSUYICAj+VeerZw= To: LKML Cc: Jan Kara , Marcin Slusarz Subject: [PATCH 0/6] udf: next round of cleanups Date: Sun, 3 Feb 2008 19:33:45 +0100 Message-Id: <1202063631-18145-1-git-send-email-marcin.slusarz@gmail.com> X-Mailer: git-send-email 1.5.3.7 From: marcin.slusarz@gmail.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi This patchset contains next round of various UDF fs cleanups. [PATCH 1/6] udf: udf_get_block, inode_bmap - remove unneeded checks [PATCH 2/6] udf: create function for conversion from timestamp to timespec [PATCH 3/6] udf: convert udf_stamp_to_time to return struct timespec [PATCH 4/6] udf: convert udf_stamp_to_time and udf_time_to_stamp to use timestamps [PATCH 5/6] udf: remove unneeded kernel_timestamp type These 4 patches can be folded into one if requested, but I think it's easier to analyze them when they are split. [PATCH 6/6] udf: super.c reorganization Pretty mechanical work. Can be dropped and redone if it will conflict with someone else patch. fs/udf/ecma_167.h | 13 - fs/udf/inode.c | 183 ++++++----------- fs/udf/super.c | 553 ++++++++++++++++++++++++++---------------------------- fs/udf/udfdecl.h | 8 fs/udf/udfend.h | 22 -- fs/udf/udftime.c | 39 +-- 6 files changed, 358 insertions(+), 460 deletions(-) Applies on top of patches I've sent lately (http://lkml.org/lkml/2008/1/30/482) Jan: Are you going to create git tree for udf? Marcin Slusarz