From: Renaud Barbier <renaud.barbier@ge.com>
To: barebox@lists.infradead.org
Subject: [PATCH 00/18] UBIFS support
Date: Mon, 3 Dec 2012 18:08:16 +0000 [thread overview]
Message-ID: <1354558114-28799-1-git-send-email-renaud.barbier@ge.com> (raw)
This patchset adds UBIFS support to Barebox. It includes the core UBIFS
support and more recent patches found in the U-boot git tree.
It has been tested on a PPC system by mounting a NOR flash UBI volume,
copying the kernel to memory and booting it.
Bernhard Walle (1):
UBIFS: Improve error message when reading superblock failed
Lars Poeschel (1):
ubifs bad superblock bug
Renaud Barbier (15):
fs/fs.c: check that fsdev->cdev->dev is not NULL
UBIFS: preparation
UBIFS: header files (1/2)
UBIFS: header files (2/2)
UBIFS: file operations
UBIFS: initialization
UBIFS: journal
UBIFS: I/O subsystem
UBIFS: LEB support
UBIFS: master node
UBIFS: recovery
UBIFS: tree node cache
UBIFS: superblock
UBIFS: scan
UBIFS: configuration and build directives
Stefan Roese (1):
ubifs: Fix memory leak in ubifs_finddir
fs/Kconfig | 4 +
fs/Makefile | 1 +
fs/fs.c | 3 +-
fs/ubifs/Makefile | 9 +
fs/ubifs/budget.c | 113 ++
fs/ubifs/crc16.c | 60 ++
fs/ubifs/crc16.h | 29 +
fs/ubifs/debug.c | 156 +++
fs/ubifs/debug.h | 392 +++++++
fs/ubifs/io.c | 316 ++++++
fs/ubifs/key.h | 557 ++++++++++
fs/ubifs/log.c | 104 ++
fs/ubifs/lprops.c | 842 +++++++++++++++
fs/ubifs/lpt.c | 1105 +++++++++++++++++++
fs/ubifs/lpt_commit.c | 171 +++
fs/ubifs/master.c | 341 ++++++
fs/ubifs/misc.h | 311 ++++++
fs/ubifs/orphan.c | 316 ++++++
fs/ubifs/recovery.c | 1225 +++++++++++++++++++++
fs/ubifs/replay.c | 1070 +++++++++++++++++++
fs/ubifs/sb.c | 346 ++++++
fs/ubifs/scan.c | 362 +++++++
fs/ubifs/super.c | 1202 +++++++++++++++++++++
fs/ubifs/tnc.c | 2767 ++++++++++++++++++++++++++++++++++++++++++++++++
fs/ubifs/tnc_misc.c | 435 ++++++++
fs/ubifs/ubifs-media.h | 775 ++++++++++++++
fs/ubifs/ubifs.c | 943 +++++++++++++++++
fs/ubifs/ubifs.h | 2159 +++++++++++++++++++++++++++++++++++++
include/linux/bitops.h | 32 +
include/linux/types.h | 2 +
30 files changed, 16147 insertions(+), 1 deletions(-)
create mode 100644 fs/ubifs/Makefile
create mode 100644 fs/ubifs/budget.c
create mode 100644 fs/ubifs/crc16.c
create mode 100644 fs/ubifs/crc16.h
create mode 100644 fs/ubifs/debug.c
create mode 100644 fs/ubifs/debug.h
create mode 100644 fs/ubifs/io.c
create mode 100644 fs/ubifs/key.h
create mode 100644 fs/ubifs/log.c
create mode 100644 fs/ubifs/lprops.c
create mode 100644 fs/ubifs/lpt.c
create mode 100644 fs/ubifs/lpt_commit.c
create mode 100644 fs/ubifs/master.c
create mode 100644 fs/ubifs/misc.h
create mode 100644 fs/ubifs/orphan.c
create mode 100644 fs/ubifs/recovery.c
create mode 100644 fs/ubifs/replay.c
create mode 100644 fs/ubifs/sb.c
create mode 100644 fs/ubifs/scan.c
create mode 100644 fs/ubifs/super.c
create mode 100644 fs/ubifs/tnc.c
create mode 100644 fs/ubifs/tnc_misc.c
create mode 100644 fs/ubifs/ubifs-media.h
create mode 100644 fs/ubifs/ubifs.c
create mode 100644 fs/ubifs/ubifs.h
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2012-12-03 18:08 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-03 18:08 Renaud Barbier [this message]
2012-12-03 18:08 ` [PATCH 01/18] fs/fs.c: check that fsdev->cdev->dev is not NULL Renaud Barbier
2012-12-03 18:08 ` [PATCH 02/18] UBIFS: preparation Renaud Barbier
2012-12-03 18:08 ` [PATCH 03/18] UBIFS: header files (1/2) Renaud Barbier
2012-12-03 18:08 ` [PATCH 04/18] UBIFS: header files (2/2) Renaud Barbier
2012-12-03 18:08 ` [PATCH 05/18] UBIFS: file operations Renaud Barbier
2012-12-04 22:53 ` Sascha Hauer
2012-12-03 18:08 ` [PATCH 06/18] UBIFS: initialization Renaud Barbier
2012-12-03 18:08 ` [PATCH 07/18] UBIFS: journal Renaud Barbier
2012-12-03 18:08 ` [PATCH 08/18] UBIFS: I/O subsystem Renaud Barbier
2012-12-03 18:08 ` [PATCH 09/18] UBIFS: LEB support Renaud Barbier
2012-12-03 18:08 ` [PATCH 10/18] UBIFS: master node Renaud Barbier
2012-12-03 18:08 ` [PATCH 11/18] UBIFS: recovery Renaud Barbier
2012-12-03 18:08 ` [PATCH 12/18] UBIFS: tree node cache Renaud Barbier
2012-12-03 18:08 ` [PATCH 13/18] UBIFS: superblock Renaud Barbier
2012-12-03 18:08 ` [PATCH 14/18] UBIFS: scan Renaud Barbier
2012-12-03 18:08 ` [PATCH 15/18] UBIFS: configuration and build directives Renaud Barbier
2012-12-03 18:08 ` [PATCH 16/18] ubifs bad superblock bug Renaud Barbier
2012-12-03 18:08 ` [PATCH 17/18] UBIFS: Improve error message when reading superblock failed Renaud Barbier
2012-12-03 18:08 ` [PATCH 18/18] ubifs: Fix memory leak in ubifs_finddir Renaud Barbier
2012-12-03 19:17 ` [PATCH 00/18] UBIFS support Robert Jarzmik
2012-12-04 10:35 ` Renaud Barbier
2012-12-04 20:09 ` Robert Jarzmik
2012-12-05 11:47 ` Renaud Barbier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1354558114-28799-1-git-send-email-renaud.barbier@ge.com \
--to=renaud.barbier@ge.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox