<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/include/mtd, branch v2.6.32.1</title>
<subtitle>Linux kernel source tree</subtitle>
<id>https://git.amat.us/linux/atom/include/mtd?h=v2.6.32.1</id>
<link rel='self' href='https://git.amat.us/linux/atom/include/mtd?h=v2.6.32.1'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/'/>
<updated>2009-06-05T16:31:38Z</updated>
<entry>
<title>Kill jffs2-user.h</title>
<updated>2009-06-05T16:31:38Z</updated>
<author>
<name>Artem Bityutskiy</name>
<email>Artem.Bityutskiy@nokia.com</email>
</author>
<published>2009-04-21T08:02:01Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=24430abc88c67e3df2f06c96a6ccd73bda4c92f0'/>
<id>urn:sha1:24430abc88c67e3df2f06c96a6ccd73bda4c92f0</id>
<content type='text'>
This file does not define any kernel-userspace API, all
it does it defines few helpers for userspace. Instead,
userspace should have a private copy of this file.

The main (if not the only) user is the mtd-utils package, but
it already has a private copy of this file.

This patch also removes references to 'jffs2-user.h' from
'Kbuild' and MAINTAINERS' files.

Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</content>
</entry>
<entry>
<title>mtd: add OOB ioctls for &gt;4GiB devices</title>
<updated>2009-05-29T14:27:07Z</updated>
<author>
<name>Kevin Cernekee</name>
<email>kpc.mtd@gmail.com</email>
</author>
<published>2009-04-09T05:53:49Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=aea7cea9fa9e39e71f95ad70b3daf98ba9972587'/>
<id>urn:sha1:aea7cea9fa9e39e71f95ad70b3daf98ba9972587</id>
<content type='text'>
Signed-off-by: Kevin Cernekee &lt;kpc.mtd@gmail.com&gt;
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</content>
</entry>
<entry>
<title>mtd: add MEMERASE64 ioctl for &gt;4GiB devices</title>
<updated>2009-05-29T14:13:47Z</updated>
<author>
<name>Kevin Cernekee</name>
<email>kpc.mtd@gmail.com</email>
</author>
<published>2009-04-09T05:52:28Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=0dc54e9f33e2fbcea28356bc2c8c931cb307d3b3'/>
<id>urn:sha1:0dc54e9f33e2fbcea28356bc2c8c931cb307d3b3</id>
<content type='text'>
New MEMERASE/MEMREADOOB/MEMWRITEOOB ioctls are needed in order to support
64-bit offsets into large NAND flash devices.

Signed-off-by: Kevin Cernekee &lt;kpc.mtd@gmail.com&gt;
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</content>
</entry>
<entry>
<title>make MTD headers use strict integer types</title>
<updated>2009-03-26T17:14:17Z</updated>
<author>
<name>Arnd Bergmann</name>
<email>arnd@arndb.de</email>
</author>
<published>2009-02-25T23:51:41Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=ccef7ab534347e2e1e1ef398d2ec987d37e519f3'/>
<id>urn:sha1:ccef7ab534347e2e1e1ef398d2ec987d37e519f3</id>
<content type='text'>
The MTD headers traditionally use stdint types rather than
the kernel integer types. This converts them to do the
same as all the others.

Cc: David Woodhouse &lt;dwmw2@infradead.org&gt;
Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;
Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;
Signed-off-by: Ingo Molnar &lt;mingo@elte.hu&gt;
</content>
</entry>
<entry>
<title>make exported headers use strict posix types</title>
<updated>2009-03-26T17:14:14Z</updated>
<author>
<name>Arnd Bergmann</name>
<email>arnd@arndb.de</email>
</author>
<published>2009-02-25T23:51:39Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=85efde6f4e0de9577256c5f0030088d3fd4347c1'/>
<id>urn:sha1:85efde6f4e0de9577256c5f0030088d3fd4347c1</id>
<content type='text'>
A number of standard posix types are used in exported headers, which
is not allowed if __STRICT_KERNEL_NAMES is defined. In order to
get rid of the non-__STRICT_KERNEL_NAMES part and to make sane headers
the default, we have to change them all to safe types.

There are also still some leftovers in reiserfs_fs.h, elfcore.h
and coda.h, but these files have not compiled in user space for
a long time.

This leaves out the various integer types ({u_,u,}int{8,16,32,64}_t),
which we take care of separately.

Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;
Acked-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
Cc: David Airlie &lt;airlied@linux.ie&gt;
Cc: Arnaldo Carvalho de Melo &lt;acme@ghostprotocols.net&gt;
Cc: YOSHIFUJI Hideaki &lt;yoshfuji@linux-ipv6.org&gt;
Cc: netdev@vger.kernel.org
Cc: linux-ppp@vger.kernel.org
Cc: Jaroslav Kysela &lt;perex@perex.cz&gt;
Cc: Takashi Iwai &lt;tiwai@suse.de&gt;
Cc: David Woodhouse &lt;dwmw2@infradead.org&gt;
Signed-off-by: H. Peter Anvin &lt;hpa@linux.intel.com&gt;
Signed-off-by: Ingo Molnar &lt;mingo@elte.hu&gt;
</content>
</entry>
<entry>
<title>headers_check fix: mtd/inftl-user.h</title>
<updated>2009-01-30T18:43:34Z</updated>
<author>
<name>Jaswinder Singh Rajput</name>
<email>jaswinderrajput@gmail.com</email>
</author>
<published>2009-01-30T17:02:35Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=70c2ed65fe4090c9b92512ee1e35dc6625539f90'/>
<id>urn:sha1:70c2ed65fe4090c9b92512ee1e35dc6625539f90</id>
<content type='text'>
fix the following 'make headers_check' warning:

  usr/include/mtd/inftl-user.h:61: found __[us]{8,16,32,64} type without #include &lt;linux/types.h&gt;

Signed-off-by: Jaswinder Singh Rajput &lt;jaswinderrajput@gmail.com&gt;
</content>
</entry>
<entry>
<title>UBI: allow direct user-space I/O</title>
<updated>2009-01-27T14:54:41Z</updated>
<author>
<name>Sidney Amani</name>
<email>seed@uffs.org</email>
</author>
<published>2009-01-27T09:11:46Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=766fb95ba06e1bbf531d30dc05e21b2d4a0e8dd2'/>
<id>urn:sha1:766fb95ba06e1bbf531d30dc05e21b2d4a0e8dd2</id>
<content type='text'>
Introduce a new ioctl UBI_IOCSETPROP to set properties
on a volume. Also add the first property:
UBI_PROP_DIRECT_WRITE, this property is used to set the
ability to use direct writes in userspace

Signed-off-by: Sidney Amani &lt;seed@uffs.org&gt;
Signed-off-by: Corentin Chary &lt;corentincj@iksaif.net&gt;
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>UBI: improve ioctl commentaries</title>
<updated>2009-01-18T12:02:08Z</updated>
<author>
<name>Artem Bityutskiy</name>
<email>Artem.Bityutskiy@nokia.com</email>
</author>
<published>2009-01-07T14:10:58Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=f7fc6f3f33703e3365c0ef9d4bf322b88cc9dae7'/>
<id>urn:sha1:f7fc6f3f33703e3365c0ef9d4bf322b88cc9dae7</id>
<content type='text'>
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>UBI: add ioctl for is_mapped operation</title>
<updated>2009-01-18T12:02:08Z</updated>
<author>
<name>Corentin Chary</name>
<email>corentincj@iksaif.net</email>
</author>
<published>2009-01-05T13:48:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=a27ce8f55dd5fddf0b8ea179cce8f399c13dc94f'/>
<id>urn:sha1:a27ce8f55dd5fddf0b8ea179cce8f399c13dc94f</id>
<content type='text'>
This patch adds ioctl to check if an LEB is mapped or not (as a
debugging option so far).

[Re-named ioctl to make it look the same as the other one and made
 some minor stylistic changes. Artem Bityutskiy.]

Signed-off-by: Corentin Chary &lt;corentincj@iksaif.net&gt;
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
<entry>
<title>UBI: add ioctl for unmap operation</title>
<updated>2009-01-18T12:02:08Z</updated>
<author>
<name>Corentin Chary</name>
<email>corentincj@iksaif.net</email>
</author>
<published>2009-01-05T13:46:19Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=c3da23be1673be4e738aea235604b4e6cb259655'/>
<id>urn:sha1:c3da23be1673be4e738aea235604b4e6cb259655</id>
<content type='text'>
This patch adds ioctl for the LEB unmap operation (as a debugging
option so far).

[Re-named ioctl to make it look the same as the other one and made
 some minor stylistic changes. Artem Bityutskiy.]

Signed-off-by: Corentin Chary &lt;corentincj@iksaif.net&gt;
Signed-off-by: Artem Bityutskiy &lt;Artem.Bityutskiy@nokia.com&gt;
</content>
</entry>
</feed>
