summaryrefslogtreecommitdiff
path: root/include/uapi/linux/atmapi.h
AgeCommit message (Expand)Author
2017-11-02License cleanup: add SPDX license identifier to uapi header files with no lic...Greg Kroah-Hartman
2012-10-13UAPI: (Scripted) Disintegrate include/linuxDavid Howells
v files were then reviewed by Greg. Thomas wrote a script to parse the csv files and add the proper SPDX tag to the file, in the format that the file expected. This script was further refined by Greg based on the output to detect more types of files automatically and to distinguish between header and source .c files (which need different comment types.) Finally Greg ran the script using the .csv files to generate the patches. Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com> Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> libceph: simplify our debugfs attr macro 2015-04-20T15:55:39Z Ilya Dryomov idryomov@gmail.com 2015-03-25T18:15:17Z urn:sha1:9571eb4f9617e89b3f979a3856b1296eba277bb1 No need to do single_open()'s job ourselves. Signed-off-by: Ilya Dryomov <idryomov@gmail.com> UAPI: (Scripted) Convert #include "..." to #include <path/...> in kernel system headers 2012-10-02T17:01:25Z David Howells dhowells@redhat.com 2012-10-02T17:01:25Z urn:sha1:a1ce39288e6fbefdd8d607021d02384eb4a20b99 Convert #include "..." to #include <path/...> in kernel system headers. Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com> ceph: factor out libceph from Ceph file system 2010-10-20T22:37:28Z Yehuda Sadeh yehuda@hq.newdream.net 2010-04-06T22:14:15Z urn:sha1:3d14c5d2b6e15c21d8e5467dc62d33127c23a644 This factors out protocol and low-level storage parts of ceph into a separate libceph module living in net/ceph and include/linux/ceph. This is mostly a matter of moving files around. However, a few key pieces of the interface change as well: - ceph_client becomes ceph_fs_client and ceph_client, where the latter captures the mon and osd clients, and the fs_client gets the mds client and file system specific pieces. - Mount option parsing and debugfs setup is correspondingly broken into two pieces. - The mon client gets a generic handler callback for otherwise unknown messages (mds map, in this case). - The basic supported/required feature bits can be expanded (and are by ceph_fs_client). No functional change, aside from some subtle error handling cases that got cleaned up in the refactoring process. Signed-off-by: Sage Weil <sage@newdream.net>