Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1420875
| From | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 0/3] nilfs2 additional updates |
| Date | 2016-06-13 16:00 +0200 |
| Message-ID | <rJAzk-72E-5@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Hi Andrew,
please add the following changes for the next merge window:
Ryusuke Konishi (3):
nilfs2: fix misuse of a semaphore in sysfs code
nilfs2: use BIT() macro
nilfs2: move ioctl interface and disk layout to uapi separately
In this series,
> nilfs2: fix misuse of a semaphore in sysfs code
corrects, as its name suggests, wrong use of a semaphore, though we
don't know any real problem that it causes. Then,
> nilfs2: use BIT() macro
replaces "(1 << b)" style bit shifts with the generic BIT() macro for
simplicity.
Finally,
> nilfs2: move ioctl interface and disk layout to uapi separately
moves nilfs2_fs.h header, which is currently stored in the
"include/linux" directory, to the uapi directory, splitting the file
into two headers "nilfs2_api.h" and "nilfs2_ondisk.h"; the former
separates ioctl related definitions and the latter collects up on-disk
structures.
Thanks,
Ryusuke Konishi
--
Documentation/filesystems/nilfs2.txt | 3 +-
Documentation/ioctl/ioctl-number.txt | 2 +-
MAINTAINERS | 3 +-
fs/nilfs2/bmap.h | 2 +-
fs/nilfs2/btnode.c | 4 +-
fs/nilfs2/btree.h | 2 +-
fs/nilfs2/cpfile.c | 1 -
fs/nilfs2/cpfile.h | 3 +-
fs/nilfs2/dat.h | 1 +
fs/nilfs2/dir.c | 22 +
fs/nilfs2/direct.h | 10 -
fs/nilfs2/ifile.h | 1 -
fs/nilfs2/inode.c | 4 +-
fs/nilfs2/ioctl.c | 1 -
fs/nilfs2/nilfs.h | 18 +-
fs/nilfs2/page.c | 26 +-
fs/nilfs2/segment.c | 14 +-
fs/nilfs2/segment.h | 1 -
fs/nilfs2/sufile.c | 13 +-
fs/nilfs2/sufile.h | 1 -
fs/nilfs2/sysfs.c | 44 +-
fs/nilfs2/the_nilfs.h | 7 +-
include/linux/nilfs2_fs.h | 934 -----------------------------------
include/uapi/linux/nilfs2_api.h | 292 +++++++++++
include/uapi/linux/nilfs2_ondisk.h | 650 ++++++++++++++++++++++++
25 files changed, 1037 insertions(+), 1022 deletions(-)
delete mode 100644 include/linux/nilfs2_fs.h
create mode 100644 include/uapi/linux/nilfs2_api.h
create mode 100644 include/uapi/linux/nilfs2_ondisk.h
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 0/3] nilfs2 additional updates Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> - 2016-06-13 16:00 +0200
[PATCH 2/3] nilfs2: use BIT() macro Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> - 2016-06-13 16:00 +0200
Re: [PATCH 3/3] nilfs2: move ioctl interface and disk layout to uapi separately Andrew Morton <akpm@linux-foundation.org> - 2016-06-15 00:40 +0200
Re: [PATCH 3/3] nilfs2: move ioctl interface and disk layout to uapi separately Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> - 2016-06-15 15:30 +0200
csiph-web