change log for rtems (2010-06-08)

Ralf Corsepius ralf.corsepius at rtems.org
Tue Jun 8 17:01:09 UTC 2010


On 06/08/2010 06:10 PM, rtems-vc at rtems.org wrote:
>   *sh*:
> 2010-06-08	Sebastian Huber<sebastian.huber at embedded-brains.de>
>
> 	* libfs/src/imfs/imfs_creat.c: Reject creation of FIFOs if support is
> 	disabled.
>
> M 1.2356  cpukit/ChangeLog
> M   1.15  cpukit/libfs/src/imfs/imfs_creat.c
>
> diff -u rtems/cpukit/ChangeLog:1.2355 rtems/cpukit/ChangeLog:1.2356
> --- rtems/cpukit/ChangeLog:1.2355	Tue Jun  8 07:59:50 2010
> +++ rtems/cpukit/ChangeLog	Tue Jun  8 10:15:29 2010
> @@ -1,5 +1,10 @@
>   2010-06-08	Sebastian Huber<sebastian.huber at embedded-brains.de>
>
> +	* libfs/src/imfs/imfs_creat.c: Reject creation of FIFOs if support is
> +	disabled.
> +
> +2010-06-08	Sebastian Huber<sebastian.huber at embedded-brains.de>
> +
>   	PR 1524/filesystem
>   	* libcsupport/src/rtems_mkdir.c: New file.
>   	* libcsupport/src/Makefile.am: Reflect change above.
>
> diff -u rtems/cpukit/libfs/src/imfs/imfs_creat.c:1.14 rtems/cpukit/libfs/src/imfs/imfs_creat.c:1.15
> --- rtems/cpukit/libfs/src/imfs/imfs_creat.c:1.14	Tue Jan 19 13:31:00 2010
> +++ rtems/cpukit/libfs/src/imfs/imfs_creat.c	Tue Jun  8 10:15:31 2010
> @@ -45,6 +45,16 @@
>     if ( parent_loc == NULL )
>       return NULL;
>
> +  parent = parent_loc->node_access;
> +  fs_info = parent_loc->mt_entry->fs_info;
> +
> +  /*
> +   *  Reject creation of FIFOs if support is disabled.
> +   */
> +  if ( type == IMFS_FIFO&&
> +       fs_info->fifo_handlers ==&rtems_filesystem_null_handlers )
> +    return NULL;
> +
>     /*
>      *  Allocate filesystem node and fill in basic information
>      */
> @@ -96,8 +106,6 @@
>     /*
>      *  This node MUST have a parent, so put it in that directory list.
>      */
> -  parent       = parent_loc->node_access;
> -  fs_info      = parent_loc->mt_entry->fs_info;
>
>     node->Parent = parent;
>     node->st_ino = ++fs_info->ino_count;
>
>
>   *sh*:
> 2010-06-08	Sebastian Huber<sebastian.huber at embedded-brains.de>
>
> 	* libcsupport/include/rtems/libio.h: Documentation.
>
> M 1.2357  cpukit/ChangeLog
> M   1.68  cpukit/libcsupport/include/rtems/libio.h
>
> diff -u rtems/cpukit/ChangeLog:1.2356 rtems/cpukit/ChangeLog:1.2357
> --- rtems/cpukit/ChangeLog:1.2356	Tue Jun  8 10:15:29 2010
> +++ rtems/cpukit/ChangeLog	Tue Jun  8 10:39:59 2010
> @@ -1,5 +1,9 @@
>   2010-06-08	Sebastian Huber<sebastian.huber at embedded-brains.de>
>
> +	* libcsupport/include/rtems/libio.h: Documentation.
> +
> +2010-06-08	Sebastian Huber<sebastian.huber at embedded-brains.de>
> +
>   	* libfs/src/imfs/imfs_creat.c: Reject creation of FIFOs if support is
>   	disabled.
>
>
> diff -u rtems/cpukit/libcsupport/include/rtems/libio.h:1.67 rtems/cpukit/libcsupport/include/rtems/libio.h:1.68
> --- rtems/cpukit/libcsupport/include/rtems/libio.h:1.67	Tue Jun  8 07:59:51 2010
> +++ rtems/cpukit/libcsupport/include/rtems/libio.h	Tue Jun  8 10:40:00 2010
> @@ -1,15 +1,12 @@
>   /**
> - * @file rtems/libio.h
> + * @file
>    
This change is wrong - Revert!

@file is supposed to refer to the location a file is being installed 
into, not where it is located inside of the source tree.



More information about the vc mailing list