From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1764826AbZDBQ2Z (ORCPT ); Thu, 2 Apr 2009 12:28:25 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1761221AbZDBQ2E (ORCPT ); Thu, 2 Apr 2009 12:28:04 -0400 Received: from mail-fx0-f158.google.com ([209.85.220.158]:41119 "EHLO mail-fx0-f158.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759949AbZDBQ2B (ORCPT ); Thu, 2 Apr 2009 12:28:01 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; b=DU5Rn6do0I9e6ommu+xeIJpRXX+oUIysIdWP7GwRGQ9jEd8oMuBYej7RdxcEsaym5l 6WTjYk5JfKaKLLU5zPzOD8SgeT1xLtIAJ35+qhzw716bT1naidhyCr1jkqd0Ljnu9x2v TEW+3mjLA69L4/M6UH9v6heqdjZMuiVGMHaOg= Message-ID: <49D4E70A.9090507@panasas.com> Date: Thu, 02 Apr 2009 19:25:46 +0300 From: Boaz Harrosh User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1b3pre) Gecko/20090315 Remi/3.0-0.b2.fc10.remi Thunderbird/3.0b2 MIME-Version: 1.0 To: Linus Torvalds , Andrew Morton , open-osd mailing-list CC: Jeff Garzik , James Bottomley , Linux Kernel , linux-scsi , linux-fsdevel , Stephen Rothwell Subject: [GIT PULL] Request for pulling exofs for 2.6.30 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org which is available in the git repository at: git://git.open-osd.org/linux-open-osd.git for-linus Boaz Harrosh (9): exofs: Kbuild, Headers and osd utils exofs: file and file_inode operations exofs: symlink_inode and fast_symlink_inode operations exofs: address_space_operations exofs: dir_inode and directory operations exofs: super_operations and file_system_type exofs: export_operations exofs: Documentation fs: Add exofs to Kernel build The filesystem code was reviewed on linux-fsdevel, linux-scsi and linux-kernel Mailing lists. They went through 7 cycles of reviews, until comments stopped. The exofs tree above was in linux-next since 2.6.29-rc1 All the pre-requisites for this code have been accepted upstream through scsi-misc tree. That is the open-osd osd_initiator library. There is also a user mode osd-api and exofs user-mode mount and mkfs.exofs utilities. They are all fully GPLed projects. The project is hosted on a dedicated server at http://open-osd.org There's a modest Wiki and an active mailing lists. There are a few users mostly students that use osd for their personal projects, and one main user, Panasas which I work for. At one of the mails Andrew Morton suggested you might want to pull the git-tree directly, instead of him pushing it through his tree? Please tell me if you need any more information in order to formulate an opinion. Statistics: Documentation/filesystems/exofs.txt | 176 +++++ fs/Kconfig | 2 + fs/Makefile | 1 + fs/exofs/BUGS | 3 + fs/exofs/Kbuild | 16 + fs/exofs/Kconfig | 13 + fs/exofs/common.h | 184 +++++ fs/exofs/dir.c | 672 ++++++++++++++++++ fs/exofs/exofs.h | 180 +++++ fs/exofs/file.c | 87 +++ fs/exofs/inode.c | 1303 +++++++++++++++++++++++++++++++++++ fs/exofs/namei.c | 342 +++++++++ fs/exofs/osd.c | 153 ++++ fs/exofs/super.c | 584 ++++++++++++++++ fs/exofs/symlink.c | 57 ++ 15 files changed, 3773 insertions(+), 0 deletions(-) create mode 100644 Documentation/filesystems/exofs.txt create mode 100644 fs/exofs/BUGS create mode 100644 fs/exofs/Kbuild create mode 100644 fs/exofs/Kconfig create mode 100644 fs/exofs/common.h create mode 100644 fs/exofs/dir.c create mode 100644 fs/exofs/exofs.h create mode 100644 fs/exofs/file.c create mode 100644 fs/exofs/inode.c create mode 100644 fs/exofs/namei.c create mode 100644 fs/exofs/osd.c create mode 100644 fs/exofs/super.c create mode 100644 fs/exofs/symlink.c Thank you very much in advance Boaz