From owner-cvs-src-old@FreeBSD.ORG Mon Dec 7 15:15:22 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD614106566B for ; Mon, 7 Dec 2009 15:15:22 +0000 (UTC) (envelope-from guido@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BC1748FC0C for ; Mon, 7 Dec 2009 15:15:22 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id nB7FFMFI023187 for ; Mon, 7 Dec 2009 15:15:22 GMT (envelope-from guido@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nB7FFMCL023186 for cvs-src-old@freebsd.org; Mon, 7 Dec 2009 15:15:22 GMT (envelope-from guido@repoman.freebsd.org) Message-Id: <200912071515.nB7FFMCL023186@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to guido@repoman.freebsd.org using -f From: Guido van Rooij Date: Mon, 7 Dec 2009 15:15:08 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/ntfs ntfs.h ntfs_subr.c ntfs_vfsops.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Dec 2009 15:15:22 -0000 guido 2009-12-07 15:15:08 UTC FreeBSD src repository Modified files: sys/fs/ntfs ntfs.h ntfs_subr.c ntfs_vfsops.c Log: SVN rev 200214 on 2009-12-07 15:15:08Z by guido Fix ntfs such that it understand media with a non-512-bytes sector size: 1. Fixups are always done on 512 byte chunks (in stead of sectors). This is kind of stupid. 2. Conevrt between NTFS blocknumbers (the blocksize equals the media sector size) and the bread() and getblk() blocknr (which are 512-byte sized) NB: this change should not affect ntfs for 512-byte sector sizes. Revision Changes Path 1.22 +2 -0 src/sys/fs/ntfs/ntfs.h 1.49 +11 -7 src/sys/fs/ntfs/ntfs_subr.c 1.97 +2 -0 src/sys/fs/ntfs/ntfs_vfsops.c