Commit 6d66f5cd26e4c482e986130b7572f2735a0f7e8b

Authored by Tejun Heo
Committed by Greg Kroah-Hartman
1 parent f0e7e1bd77

sysfs: add copyrights

Sysfs has gone through considerable amount of reimplementation.  Add
copyrights.  Any objections?  :-)

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

Showing 8 changed files with 61 additions and 7 deletions Side-by-side Diff

1 1 /*
2   - * bin.c - binary file operations for sysfs.
  2 + * fs/sysfs/bin.c - sysfs binary file implementation
3 3 *
4 4 * Copyright (c) 2003 Patrick Mochel
5 5 * Copyright (c) 2003 Matthew Wilcox
6 6 * Copyright (c) 2004 Silicon Graphics, Inc.
  7 + * Copyright (c) 2007 SUSE Linux Products GmbH
  8 + * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
  9 + *
  10 + * This file is released under the GPLv2.
  11 + *
  12 + * Please see Documentation/filesystems/sysfs.txt for more information.
7 13 */
8 14  
9 15 #undef DEBUG
1 1 /*
2   - * dir.c - Operations for sysfs directories.
  2 + * fs/sysfs/dir.c - sysfs core and dir operation implementation
  3 + *
  4 + * Copyright (c) 2001-3 Patrick Mochel
  5 + * Copyright (c) 2007 SUSE Linux Products GmbH
  6 + * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
  7 + *
  8 + * This file is released under the GPLv2.
  9 + *
  10 + * Please see Documentation/filesystems/sysfs.txt for more information.
3 11 */
4 12  
5 13 #undef DEBUG
1 1 /*
2   - * file.c - operations for regular (text) files.
  2 + * fs/sysfs/file.c - sysfs regular (text) file implementation
  3 + *
  4 + * Copyright (c) 2001-3 Patrick Mochel
  5 + * Copyright (c) 2007 SUSE Linux Products GmbH
  6 + * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
  7 + *
  8 + * This file is released under the GPLv2.
  9 + *
  10 + * Please see Documentation/filesystems/sysfs.txt for more information.
3 11 */
4 12  
5 13 #include <linux/module.h>
1 1 /*
2   - * inode.c - basic inode and dentry operations.
  2 + * fs/sysfs/inode.c - basic sysfs inode and dentry operations
3 3 *
4   - * sysfs is Copyright (c) 2001-3 Patrick Mochel
  4 + * Copyright (c) 2001-3 Patrick Mochel
  5 + * Copyright (c) 2007 SUSE Linux Products GmbH
  6 + * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
  7 + *
  8 + * This file is released under the GPLv2.
5 9 *
6 10 * Please see Documentation/filesystems/sysfs.txt for more information.
7 11 */
1 1 /*
2   - * mount.c - operations for initializing and mounting sysfs.
  2 + * fs/sysfs/symlink.c - operations for initializing and mounting sysfs
  3 + *
  4 + * Copyright (c) 2001-3 Patrick Mochel
  5 + * Copyright (c) 2007 SUSE Linux Products GmbH
  6 + * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
  7 + *
  8 + * This file is released under the GPLv2.
  9 + *
  10 + * Please see Documentation/filesystems/sysfs.txt for more information.
3 11 */
4 12  
5 13 #define DEBUG
1 1 /*
2   - * symlink.c - operations for sysfs symlinks.
  2 + * fs/sysfs/symlink.c - sysfs symlink implementation
  3 + *
  4 + * Copyright (c) 2001-3 Patrick Mochel
  5 + * Copyright (c) 2007 SUSE Linux Products GmbH
  6 + * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
  7 + *
  8 + * This file is released under the GPLv2.
  9 + *
  10 + * Please see Documentation/filesystems/sysfs.txt for more information.
3 11 */
4 12  
5 13 #include <linux/fs.h>
  1 +/*
  2 + * fs/sysfs/sysfs.h - sysfs internal header file
  3 + *
  4 + * Copyright (c) 2001-3 Patrick Mochel
  5 + * Copyright (c) 2007 SUSE Linux Products GmbH
  6 + * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
  7 + *
  8 + * This file is released under the GPLv2.
  9 + */
  10 +
1 11 struct sysfs_open_dirent;
2 12  
3 13 /* type-specific structures for sysfs_dirent->s_* union members */
include/linux/sysfs.h
... ... @@ -3,6 +3,8 @@
3 3 *
4 4 * Copyright (c) 2001,2002 Patrick Mochel
5 5 * Copyright (c) 2004 Silicon Graphics, Inc.
  6 + * Copyright (c) 2007 SUSE Linux Products GmbH
  7 + * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
6 8 *
7 9 * Please see Documentation/filesystems/sysfs.txt for more information.
8 10 */