public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] xfsprogs: Partial OS X support
@ 2015-08-17 16:23 Jan Tulak
  2015-08-17 16:23 ` [PATCH 01/11] xfsprogs: undefined variable fix Jan Tulak
                   ` (11 more replies)
  0 siblings, 12 replies; 42+ messages in thread
From: Jan Tulak @ 2015-08-17 16:23 UTC (permalink / raw)
  To: xfs; +Cc: hch, Jan Tulak

This is a third iteration of OS X support patches. Notes with information about
changes in every patch since the last bulk submittation (or at least the last
iteration of that patch) follows.

BTW: for the patches which already got "Reviewed-by", I added the line
to these patches. If this is not a good thing and I should let the reviewer
to submit his reviewed-by email again, tell me. :-)

undefined variable fix
- better explanation in commit

Add ifdef dirent checks where it was missing
- added approximation of d_reclen
- text width fix

Change OS X-specific CFLAGS/LDFLAGS
- Nothing, already reviewed

Add includes required for OS X builds
- updated for libdisk gone

missing and dummy calls for OS X support
- new patch (no review yet)

Add mntent.h check into autoconf
- new patch
- autoconf change

Add fls check into autoconf
- new patch
- autoconf change

replace obsolete memalign with posix_memalign
- new patch
- remove strange code formatted

prevent LIST_ macros conflicts
- already reviewed
- new patch

Update doc for OS X
- new patch (no review yet)

Add a way to compile without blkid
- new patch
- changed default behaviour if BLKID is disabled such that mkfs -f is required


Jan Tulak (11):
  xfsprogs: undefined variable fix
  xfsprogs: Add ifdef dirent checks where it was missing
  xfsprogs: Change OS X-specific CFLAGS/LDFLAGS
  xfsprogs: Add includes required for OS X builds
  xfsprogs: missing and dummy calls for OS X support
  xfsprogs: Add mntent.h check into autoconf
  xfsprogs: Add fls check into autoconf
  xfsprogs: replace obsolete memalign with posix_memalign
  xfsprogs: prevent LIST_ macros conflicts
  xfsprogs: Update doc for OS X
  xfsprogs: Add a way to compile without blkid

 configure.ac          |  12 +++-
 copy/xfs_copy.c       |   2 +-
 db/attrset.c          |   2 +-
 doc/INSTALL           |  11 +++-
 fsr/xfs_fsr.c         |  17 ++++--
 include/bitops.h      |   2 +
 include/builddefs.in  |  11 +++-
 include/darwin.h      | 162 ++++++++++++++++++++++++++++++++++++++++++++------
 include/freebsd.h     |   1 -
 include/gnukfreebsd.h |   1 -
 include/linux.h       |   1 -
 include/list.h        |  14 +++++
 io/pread.c            |   4 +-
 io/readdir.c          |  12 ++++
 libhandle/Makefile    |   4 ++
 libxcmd/paths.c       |   2 +-
 libxfs/rdwr.c         |  12 ++--
 m4/package_libcdev.m4 |  20 +++++++
 mkfs/xfs_mkfs.c       |  25 +++++++-
 repair/incore.c       |   2 +-
 repair/incore_ino.c   |   7 ++-
 repair/phase1.c       |   2 +-
 repair/prefetch.c     |   7 +--
 repair/sb.c           |  10 ++--
 rtcp/xfs_rtcp.c       |   7 ++-
 25 files changed, 295 insertions(+), 55 deletions(-)

-- 
2.4.5

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 42+ messages in thread

end of thread, other threads:[~2015-08-24 12:54 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-17 16:23 [PATCH 00/11] xfsprogs: Partial OS X support Jan Tulak
2015-08-17 16:23 ` [PATCH 01/11] xfsprogs: undefined variable fix Jan Tulak
2015-08-17 19:22   ` Christoph Hellwig
2015-08-17 16:23 ` [PATCH 02/11] xfsprogs: Add ifdef dirent checks where it was missing Jan Tulak
2015-08-17 19:23   ` Christoph Hellwig
2015-08-18  6:49     ` Jan Tulak
2015-08-17 16:23 ` [PATCH 03/11] xfsprogs: Change OS X-specific CFLAGS/LDFLAGS Jan Tulak
2015-08-17 16:23 ` [PATCH 04/11] xfsprogs: Add includes required for OS X builds Jan Tulak
2015-08-17 19:23   ` Christoph Hellwig
2015-08-17 16:23 ` [PATCH 05/11] xfsprogs: missing and dummy calls for OS X support Jan Tulak
2015-08-17 19:32   ` Christoph Hellwig
2015-08-18  0:17     ` Dave Chinner
2015-08-24 12:53     ` Jan Tulak
2015-08-18 21:45   ` Dave Chinner
2015-08-19  8:09     ` Christoph Hellwig
2015-08-19  9:14       ` Jan Tulak
2015-08-19  9:19         ` Christoph Hellwig
2015-08-19 10:26       ` Dave Chinner
2015-08-20  0:22         ` Dave Chinner
2015-08-20  7:33           ` Jan Tulak
2015-08-21  0:43             ` Dave Chinner
2015-08-17 16:23 ` [PATCH 06/11] xfsprogs: Add mntent.h check into autoconf Jan Tulak
2015-08-17 19:32   ` Christoph Hellwig
2015-08-17 16:23 ` [PATCH 07/11] xfsprogs: Add fls " Jan Tulak
2015-08-17 19:32   ` Christoph Hellwig
2015-08-17 16:23 ` [PATCH 08/11] xfsprogs: replace obsolete memalign with posix_memalign Jan Tulak
2015-08-17 19:36   ` Christoph Hellwig
2015-08-18  7:04     ` Jan Tulak
2015-08-18  8:20       ` Dave Chinner
2015-08-18  8:33         ` Jan Tulak
2015-08-18 22:01           ` Dave Chinner
2015-08-19  8:06             ` Jan Tulak
2015-08-17 16:23 ` [PATCH 09/11] xfsprogs: prevent LIST_ macros conflicts Jan Tulak
2015-08-17 19:36   ` Christoph Hellwig
2015-08-17 16:23 ` [PATCH 10/11] xfsprogs: Update doc for OS X Jan Tulak
2015-08-17 19:36   ` Christoph Hellwig
2015-08-17 16:23 ` [PATCH 11/11] xfsprogs: Add a way to compile without blkid Jan Tulak
2015-08-17 19:39   ` Christoph Hellwig
2015-08-18  7:59     ` Jan Tulak
2015-08-18 12:02     ` [PATCH v2 " Jan Tulak
2015-08-17 21:55 ` [PATCH 00/11] xfsprogs: Partial OS X support Dave Chinner
2015-08-18  9:14   ` Jan Tulak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox