commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] Hurd branch, master, updated. hurd-release-0-2-3597-ga9a800d


From: Samuel Thibault
Subject: [SCM] Hurd branch, master, updated. hurd-release-0-2-3597-ga9a800d
Date: Sun, 15 Sep 2013 21:28:12 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Hurd".

The branch, master has been updated
       via  a9a800dbaa0e79ecba232e477291a38e119e2df9 (commit)
       via  bdd2c077ee64a236881f6a9de2bb2ab540aeea55 (commit)
       via  2738f9dc3c24032f94b41fa2e637f1cef581c0e9 (commit)
       via  054d366c931956e784a4f9da08efa1395f3e5680 (commit)
       via  3a5bcbcc94f01b1ef1ed0571b31434ed57162224 (commit)
       via  70b1ab5dbb8d7d1cf63ab170e0a96a03c6dd363c (commit)
       via  8acdc0f29b9b0b043939929b1ce3e71473b0b847 (commit)
       via  c51d6ea6607223b290a96f483399ba4ca25cce6f (commit)
       via  89a83128840708df6d645b572a95b2d114d146fd (commit)
       via  b83056e9bbb8d42e9b15b73edded33e464ae9a6a (commit)
       via  f18f06ea2fbde9d5ab2d6bbd30e4cdeebb186c87 (commit)
       via  9df906ee4f34cf54c9ba253d44abb74b0ef63fe1 (commit)
       via  2ea00da3929b9b50c3860914249b3ea7691b63c8 (commit)
       via  06d49cdadd9e96361f3fe49b9c940b88bb869284 (commit)
      from  39e97c785a7b7f5fd5458986aa834e4069ce3b2f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a9a800dbaa0e79ecba232e477291a38e119e2df9
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:24 2013 +0200

    trans: add mtab translator
    
    The mtab translator provides an mtab file that is dynamically created
    on demand. It is populated with information about active translators
    bound below the given path that is accumulated by traversing the
    translator tree. It can also be invoked as normal program that prints
    the requested information to stdout.
    
    * trans/mtab.c: New file.
    * trans/Makefile: Build mtab.

commit bdd2c077ee64a236881f6a9de2bb2ab540aeea55
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:23 2013 +0200

    hurd: add fsys_get_source
    
    Return information about the source of the receiving filesystem.
    If the concept of a source is applicable, SOURCE should refer to
    the source of the receiving translator and should be a description
    considered appropriate in the context of the translator.  For
    example for the case of block device based filesystems, SOURCE
    should be the file name of the underlying block device.
    
    * hurd/fsys.defs: Add fsys_get_source.
    * hurd/fsys_reply.defs: Add fsys_get_source.

commit 2738f9dc3c24032f94b41fa2e637f1cef581c0e9
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:22 2013 +0200

    trans/symlink.c: add fsys_get_source
    
    Create a server function returning EOPNOTSUPP.
    
    * trans/symlink.c (S_fsys_get_source): New function.

commit 054d366c931956e784a4f9da08efa1395f3e5680
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:21 2013 +0200

    libtrivfs: add fsys_get_source
    
    * libtrivfs/Makefile: Add fsys-get-source.c and get-source.c
    * libtrivfs/trivfs.h: Add trivfs_get_source.
    * libtrivfs/fsys-get-source.c: New file.
    * libtrivfs/get-source.c: Likewise.

commit 3a5bcbcc94f01b1ef1ed0571b31434ed57162224
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:20 2013 +0200

    libnetfs: add fsys_get_source
    
    Add a user overridable function netfs_get_source with a default
    implementation returning EOPNOTSUPP. Add a server function for
    fsys-get-source.
    
    * libnetfs/Makefile: Add fsys-get-source.c and get-source.c
    * libnetfs/netfs.h: Add netfs_get_source.
    * libnetfs/fsys-get-source.c: New file.
    * libnetfs/get-source.c: Likewise.

commit 70b1ab5dbb8d7d1cf63ab170e0a96a03c6dd363c
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:19 2013 +0200

    libdiskfs: add fsys_get_source
    
    Add a user overridable function diskfs_get_source with a default
    implementation returning EOPNOTSUPP. Add a server function for
    fsys-get-source.
    
    * libdiskfs/Makefile: Add fsys-get-source.c and get-source.c
    * libdiskfs/diskfs.h: Add diskfs_get_source.
    * libdiskfs/fsys-get-source.c: New file.
    * libdiskfs/get-source.c: Likewise.

commit 8acdc0f29b9b0b043939929b1ce3e71473b0b847
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:18 2013 +0200

    hurd: add fsys_get_children
    
    fsys_get_children returns any active translators bound to nodes of the
    receiving filesystem as an argz vector containing file names relative
    to the root of the receiving translator.
    
    * hurd/fsys.defs: Add fsys_get_children.
    * hurd/fsys_reply.defs: Add fsys_get_children.

commit c51d6ea6607223b290a96f483399ba4ca25cce6f
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:17 2013 +0200

    trans/symlink.c: add fsys_get_children
    
    Create a server function returning EOPNOTSUPP.
    
    * trans/symlink.c (S_fsys_get_children): New function.

commit 89a83128840708df6d645b572a95b2d114d146fd
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:16 2013 +0200

    libtrivfs: add fsys_get_children
    
    Create a server function returning EOPNOTSUPP.
    
    * libtrivfs/fsys-get-children.c: New file.

commit b83056e9bbb8d42e9b15b73edded33e464ae9a6a
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:15 2013 +0200

    libnetfs: add fsys_get_children
    
    Keep track of active translators and handle fsys_get_children
    requests.
    
    * libnetfs/Makefile (FSYSSRCS): Add fsys-get-children.c.
    * libnetfs/dead-name.c (ports_dead_name): Remove dead translators.
    * libnetfs/file-set-translator.c (netfs_S_file_set_translator): Register
      active translators.
    * libnetfs/fsys-get-children.c: New file.

commit f18f06ea2fbde9d5ab2d6bbd30e4cdeebb186c87
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:14 2013 +0200

    libdiskfs: add fsys_get_children
    
    Keep track of active translators and handle fsys_get_children
    requests.
    
    * libdiskfs/Makefile (FSYSSRCS): Add fsys-get-children.c.
    * libdiskfs/dead-name.c (ports_dead_name): Remove dead translators.
    * libdiskfs/file-set-trans.c (diskfs_S_file_set_translator): Register
      active translators.
    * libdiskfs/fsys-get-children.c: New file.

commit 9df906ee4f34cf54c9ba253d44abb74b0ef63fe1
Author: Justus Winter <address@hidden>
Date:   Tue Jul 30 11:59:13 2013 +0200

    libfshelp: add translator-list.c
    
    Add functions that maintain a list of active translators.
    
    * libfshelp/translator-list.c: New file.
    * libfshelp/fshelp.h: Add function declarations.
    * libfshelp/Makefile: Add translator-list.c, link against libihash.

commit 2ea00da3929b9b50c3860914249b3ea7691b63c8
Author: Justus Winter <address@hidden>
Date:   Mon Sep 2 11:37:06 2013 +0200

    libnetfs: track file name in struct peropen
    
    Track the relative path used to obtain a file handle in the
    struct peropen.
    
    * libnetfs/netfs.h (struct peropen): New field path.
    * libnetfs/make-peropen.c (netfs_make_peropen): Initialize path.
    * libnetfs/release-peropen.c (netfs_release_peropen): Free path.
    * libnetfs/fsys-getroot.c (netfs_S_fsys_getroot): Initialize path.
    * libnetfs/dir-lookup.c (netfs_S_dir_lookup): Preserve the path.

commit 06d49cdadd9e96361f3fe49b9c940b88bb869284
Author: Justus Winter <address@hidden>
Date:   Mon Sep 2 11:37:05 2013 +0200

    libdiskfs: track file name in struct peropen
    
    Track the relative path used to obtain a file handle in the
    struct peropen.
    
    * libdiskfs/diskfs.h (struct peropen): New field path.
    * libdiskfs/peropen-make.c (diskfs_make_peropen): Initialize path.
    * libdiskfs/peropen-rele.c (diskfs_release_peropen): Free path.
    * libdiskfs/fsys-getroot.c (diskfs_S_fsys_getroot): Initialize path.
    * libdiskfs/dir-lookup.c (diskfs_S_dir_lookup): Preserve the path.

-----------------------------------------------------------------------

Summary of changes:
 hurd/fsys.defs                                     |   22 +-
 hurd/fsys_reply.defs                               |   12 +-
 libdiskfs/Makefile                                 |    5 +-
 libdiskfs/dead-name.c                              |    4 +-
 libdiskfs/dir-lookup.c                             |   26 +-
 libdiskfs/diskfs.h                                 |   11 +-
 libdiskfs/file-set-trans.c                         |   19 +-
 libdiskfs/fsys-get-children.c                      |   99 +++
 .../append-args.c => libdiskfs/fsys-get-source.c   |   24 +-
 libdiskfs/fsys-getroot.c                           |    3 +-
 libcons/extra-version.c => libdiskfs/get-source.c  |   18 +-
 libdiskfs/peropen-make.c                           |    8 +
 libdiskfs/peropen-rele.c                           |    1 +
 libfshelp/Makefile                                 |    3 +-
 libfshelp/fshelp.h                                 |   33 +-
 libfshelp/translator-list.c                        |  169 ++++
 libnetfs/Makefile                                  |    5 +-
 libnetfs/dead-name.c                               |    2 +
 libnetfs/dir-lookup.c                              |   26 +-
 libnetfs/file-set-translator.c                     |   17 +-
 libnetfs/fsys-get-children.c                       |  112 +++
 .../append-args.c => libnetfs/fsys-get-source.c    |   24 +-
 libnetfs/fsys-getroot.c                            |    6 +-
 libcons/extra-version.c => libnetfs/get-source.c   |   18 +-
 libnetfs/make-peropen.c                            |    8 +
 libnetfs/netfs.h                                   |   10 +-
 libnetfs/release-peropen.c                         |    1 +
 libtrivfs/Makefile                                 |    5 +-
 libtrivfs/{append-args.c => fsys-get-children.c}   |   23 +-
 libtrivfs/{append-args.c => fsys-get-source.c}     |   23 +-
 libcons/extra-version.c => libtrivfs/get-source.c  |   18 +-
 libtrivfs/trivfs.h                                 |    8 +-
 trans/Makefile                                     |    8 +-
 trans/mtab.c                                       |  800 ++++++++++++++++++++
 trans/symlink.c                                    |   15 +
 35 files changed, 1503 insertions(+), 83 deletions(-)
 create mode 100644 libdiskfs/fsys-get-children.c
 copy libtrivfs/append-args.c => libdiskfs/fsys-get-source.c (57%)
 copy libcons/extra-version.c => libdiskfs/get-source.c (67%)
 create mode 100644 libfshelp/translator-list.c
 create mode 100644 libnetfs/fsys-get-children.c
 copy libtrivfs/append-args.c => libnetfs/fsys-get-source.c (57%)
 copy libcons/extra-version.c => libnetfs/get-source.c (67%)
 copy libtrivfs/{append-args.c => fsys-get-children.c} (52%)
 copy libtrivfs/{append-args.c => fsys-get-source.c} (57%)
 copy libcons/extra-version.c => libtrivfs/get-source.c (67%)
 create mode 100644 trans/mtab.c


hooks/post-receive
-- 
Hurd



reply via email to

[Prev in Thread] Current Thread [Next in Thread]