All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFCRAP 0/3?] xfs: OH GOD MY EYES!
@ 2017-05-18  1:26 Darrick J. Wong
  2017-05-18  1:30 ` [PATCH 1/3] xfs: remove double-underscore integer types Darrick J. Wong
                   ` (2 more replies)
  0 siblings, 3 replies; 27+ messages in thread
From: Darrick J. Wong @ 2017-05-18  1:26 UTC (permalink / raw)
  To: xfs; +Cc: Eric Sandeen

Hi all,

This is a series of three eyewateringly awful patches.  The first two
are semantic patches that perform the long-delayed conversion of double
underscore integer types (e.g. __uint64_t) into the standard C99 types
(e.g. uint64_t) that are available in userspace and the kernel.  They
are both huge, terrifying, and might just piss off vger enough that they
don't come through, but that's fine because if it ever gets approved
I'll simply rerun the sed script:

s/typedef\t__uint8_t/typedef __uint8_t\t/g
s/typedef\t__uint/typedef __uint/g
s/typedef\t__int\([0-9]*\)_t/typedef int\1_t\t/g
s/__uint8_t\t/__uint8_t\t\t/g
s/__uint/uint/g
s/__int\([0-9]*\)_t\t/__int\1_t\t\t/g
s/__int/int/g
/^typedef.*int[0-9]*_t;$/d

against whatever's current in git.  Lines 1-4 and 6 fix whitespace and
indentation problems; lines 5 and 7 perform the actual transformation,
and line 8 removes the old typedefs.

The third patch in this series adds a reboot notifier that freezes any
rw xfs filesystems prior to a soft reboot to reduce the likelihood that
grub (and other deficient xfs drivers) go stumbling through a dirty
filesystem and make our users crazy.

Flame away! :)

--Darrick

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

end of thread, other threads:[~2017-05-25  0:04 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-18  1:26 [RFCRAP 0/3?] xfs: OH GOD MY EYES! Darrick J. Wong
2017-05-18  1:30 ` [PATCH 1/3] xfs: remove double-underscore integer types Darrick J. Wong
2017-05-18  6:01   ` Dave Chinner
2017-05-18  6:21     ` Darrick J. Wong
2017-05-18  6:31     ` Christoph Hellwig
2017-05-18  1:31 ` [PATCH 2/3] xfsprogs: " Darrick J. Wong
2017-05-18  6:32   ` Christoph Hellwig
2017-05-23  2:48     ` Darrick J. Wong
2017-05-23  2:24   ` Eric Sandeen
2017-05-18  1:32 ` [PATCH 3/3] xfs: freeze rw filesystems just prior to reboot Darrick J. Wong
2017-05-18  6:28   ` Christoph Hellwig
2017-05-18  8:34   ` Dave Chinner
2017-05-18 22:30     ` Darrick J. Wong
2017-05-19 19:09       ` Chris Murphy
2017-05-19 21:00         ` Darrick J. Wong
2017-05-20  0:27           ` Chris Murphy
2017-05-22  2:07             ` Dave Chinner
     [not found]           ` <20170522020112.GV17542@dastard>
2017-05-22 20:46             ` Chris Murphy
2017-05-23  3:56               ` Chris Murphy
2017-05-23  4:04                 ` Eric Sandeen
2017-05-23 11:44                   ` Dave Chinner
2017-05-24  3:19               ` Dave Chinner
2017-05-24  8:06                 ` Chris Murphy
2017-05-24  6:22               ` Chris Murphy
2017-05-24  6:25                 ` Chris Murphy
2017-05-24 23:13                   ` Dave Chinner
2017-05-25  0:03                 ` Dave Chinner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.