Changesets: bareos

master 06aad40b

2014-07-11 20:55

mvwieringen

Ported: N/A

Details Diff
Add support to rados SD backend for libradosstriper.
mod - autoconf/configure.in Diff File
mod - src/stored/backends/Makefile.in Diff File
mod - src/stored/backends/rados_device.c Diff File
mod - src/stored/backends/rados_device.h Diff File

master 878461dd

2014-07-11 20:54

mvwieringen

Ported: N/A

Details Diff
Drop the duplicate hash table implementation.

Findlib has a hash table implementation for keeping hardlinked files
its cleaner to use the htable class we already have in the generic
library. So this patch adds support for binary keys in the htable class
so we can store there the combined inode/device key. We now also use the
hash_malloc of the htable class which allocates memory from a big memory
block so it should also scale a bit better.
mod - src/filed/fd_plugins.c Diff File
mod - src/findlib/Makefile.in Diff File
mod - src/findlib/find.c Diff File
mod - src/findlib/find.h Diff File
mod - src/findlib/find_one.c Diff File
add - src/findlib/hardlink.c Diff File
mod - src/findlib/protos.h Diff File
mod - src/lib/htable.c Diff File
mod - src/lib/htable.h Diff File

bareos-14.2 cc4ee03f

2014-07-11 20:54

Marco van Wieringen

Ported: N/A

Details Diff
Drop the duplicate hash table implementation.

Findlib has a hash table implementation for keeping hardlinked files
its cleaner to use the htable class we already have in the generic
library. So this patch adds support for binary keys in the htable class
so we can store there the combined inode/device key. We now also use the
hash_malloc of the htable class which allocates memory from a big memory
block so it should also scale a bit better.
mod - src/filed/fd_plugins.c Diff File
mod - src/findlib/Makefile.in Diff File
mod - src/findlib/find.c Diff File
mod - src/findlib/find.h Diff File
mod - src/findlib/find_one.c Diff File
add - src/findlib/hardlink.c Diff File
mod - src/findlib/protos.h Diff File
mod - src/lib/htable.c Diff File
mod - src/lib/htable.h Diff File

master a3d7175c

2014-07-11 18:59

Joerg Steffens


Committer: Marco van Wieringen

Ported: N/A

Details Diff
renamed package: macbareos to bareos-filedaemon

Renamed the Bareos MacOS package from macbareos to bareos-filedaemon
to be aligned with most of the other platforms.
mod - platforms/osx/Makefile.in Diff File

playground d61e0128

2014-07-11 16:59

joergs


Committer: mvwieringen

Ported: N/A

Details Diff
renamed package: macbareos to bareos-filedaemon

Renamed the Bareos MacOS package from macbareos to bareos-filedaemon
to be aligned with most of the other platforms.
mod - platforms/osx/Makefile.in Diff File

playground 38e59f5f

2014-07-11 16:59

joergs


Committer: mvwieringen

Ported: N/A

Details Diff
renamed package: macbareos to bareos-filedaemon

Renamed the Bareos MacOS package from macbareos to bareos-filedaemon
to be aligned with most of the other platforms.
mod - platforms/osx/Makefile.in Diff File

master a8bbf281

2014-07-11 13:09

Marco van Wieringen

Ported: N/A

Details Diff
Create an empty rados object in d_open when O_CREAT is set.
mod - src/stored/backends/rados_device.c Diff File

master 858a8a64

2014-07-11 13:09

Marco van Wieringen

Ported: N/A

Details Diff
Some tweaks to copy/migrate config.

The folllowing changes were made:

- The copy and migration jobs up until now always needed that you specify a
storage in the Job while most of the time it was never used as the real
storage used also depends on what the original Job used for storage.

This patch tries to relax the need for specifying a read storage and
tries to always use the info of the original pool used by the previous
Job being copied or migrated or the original storage settings of the Job
itself.

When you start a copy or migration you now don't see the somewhat random
read storage that can change along the way but only the write storage.
In essence it should also not matter what read storage is used as long
its the right read storage.

- We can now have migration and copy jobs without a dummy client setting
but this means that the %c variable of the Job will not be filled and as
such you won't see the client name in the completion mail subject. So we
now copy the client pointer from the actual previous Job that is
migrated or copied so that we do have the proper client name and also
the client name of the actual client the migration or copy was done for
an no longer the dummy name it was before.

- Analog to using the client from the previous Job we also use the fileset
and job level of the previous Job so that the copy migrate now always looks
similar to the original Job its copying e.g. no longer a backup level
incremental when copying/migrating a full level Job.

- Try to be smart about when to use data spooling.
Only use the Job data spooling setting when not enabled yet. e.g. when the
JCR already has data spooling enabled we don't want to disable it because
the Job has no explicit setting.

- Restored printing of the client/fileset/level in the copy/migrate overview
something we removed in a previous patch when we removed the explicit need
for specifying these settings. Now that we set the correct information in
the copy/migrate setup we can again print this data and now also show the
correct info if you configure your copy/migrate jobs using the new config
syntax e.g. without setting a dummy client and fileset.
mod - src/console/console.c Diff File
mod - src/dird/dird_conf.c Diff File
mod - src/dird/job.c Diff File
mod - src/dird/migrate.c Diff File
mod - src/dird/ua_run.c Diff File

master 01808dd7

2014-07-11 13:09

Marco van Wieringen

Ported: N/A

Details Diff
Sync LMDB code.
mod - src/lmdb/lmdb.h Diff File
mod - src/lmdb/mdb.c Diff File
mod - src/lmdb/midl.c Diff File
mod - src/lmdb/midl.h Diff File

playground d8ddbb76

2014-07-11 11:09

mvwieringen

Ported: N/A

Details Diff
Sync LMDB code.
mod - src/lmdb/lmdb.h Diff File
mod - src/lmdb/mdb.c Diff File
mod - src/lmdb/midl.c Diff File
mod - src/lmdb/midl.h Diff File

playground 9bd429c8

2014-07-11 11:09

mvwieringen

Ported: N/A

Details Diff
Some tweaks to copy/migrate config.

The folllowing changes were made:

- The copy and migration jobs up until now always needed that you specify a
storage in the Job while most of the time it was never used as the real
storage used also depends on what the original Job used for storage.

This patch tries to relax the need for specifying a read storage and
tries to always use the info of the original pool used by the previous
Job being copied or migrated or the original storage settings of the Job
itself.

When you start a copy or migration you now don't see the somewhat random
read storage that can change along the way but only the write storage.
In essence it should also not matter what read storage is used as long
its the right read storage.

- We can now have migration and copy jobs without a dummy client setting
but this means that the %c variable of the Job will not be filled and as
such you won't see the client name in the completion mail subject. So we
now copy the client pointer from the actual previous Job that is
migrated or copied so that we do have the proper client name and also
the client name of the actual client the migration or copy was done for
an no longer the dummy name it was before.

- Analog to using the client from the previous Job we also use the fileset
and job level of the previous Job so that the copy migrate now always looks
similar to the original Job its copying e.g. no longer a backup level
incremental when copying/migrating a full level Job.

- Try to be smart about when to use data spooling.
Only use the Job data spooling setting when not enabled yet. e.g. when the
JCR already has data spooling enabled we don't want to disable it because
the Job has no explicit setting.

- Restored printing of the client/fileset/level in the copy/migrate overview
something we removed in a previous patch when we removed the explicit need
for specifying these settings. Now that we set the correct information in
the copy/migrate setup we can again print this data and now also show the
correct info if you configure your copy/migrate jobs using the new config
syntax e.g. without setting a dummy client and fileset.
mod - src/console/console.c Diff File
mod - src/dird/dird_conf.c Diff File
mod - src/dird/job.c Diff File
mod - src/dird/migrate.c Diff File
mod - src/dird/ua_run.c Diff File

playground 06e24092

2014-07-11 11:09

mvwieringen

Ported: N/A

Details Diff
Create an empty rados object in d_open when O_CREAT is set.
mod - src/stored/backends/rados_device.c Diff File

playground 02f3e709

2014-07-11 11:09

mvwieringen

Ported: N/A

Details Diff
Sync LMDB code.
mod - src/lmdb/lmdb.h Diff File
mod - src/lmdb/mdb.c Diff File
mod - src/lmdb/midl.c Diff File
mod - src/lmdb/midl.h Diff File

playground 5ce0058f

2014-07-11 11:09

mvwieringen

Ported: N/A

Details Diff
Some tweaks to copy/migrate config.

The folllowing changes were made:

- The copy and migration jobs up until now always needed that you specify a
storage in the Job while most of the time it was never used as the real
storage used also depends on what the original Job used for storage.

This patch tries to relax the need for specifying a read storage and
tries to always use the info of the original pool used by the previous
Job being copied or migrated or the original storage settings of the Job
itself.

When you start a copy or migration you now don't see the somewhat random
read storage that can change along the way but only the write storage.
In essence it should also not matter what read storage is used as long
its the right read storage.

- We can now have migration and copy jobs without a dummy client setting
but this means that the %c variable of the Job will not be filled and as
such you won't see the client name in the completion mail subject. So we
now copy the client pointer from the actual previous Job that is
migrated or copied so that we do have the proper client name and also
the client name of the actual client the migration or copy was done for
an no longer the dummy name it was before.

- Analog to using the client from the previous Job we also use the fileset
and job level of the previous Job so that the copy migrate now always looks
similar to the original Job its copying e.g. no longer a backup level
incremental when copying/migrating a full level Job.

- Try to be smart about when to use data spooling.
Only use the Job data spooling setting when not enabled yet. e.g. when the
JCR already has data spooling enabled we don't want to disable it because
the Job has no explicit setting.

- Restored printing of the client/fileset/level in the copy/migrate overview
something we removed in a previous patch when we removed the explicit need
for specifying these settings. Now that we set the correct information in
the copy/migrate setup we can again print this data and now also show the
correct info if you configure your copy/migrate jobs using the new config
syntax e.g. without setting a dummy client and fileset.
mod - src/console/console.c Diff File
mod - src/dird/dird_conf.c Diff File
mod - src/dird/job.c Diff File
mod - src/dird/migrate.c Diff File
mod - src/dird/ua_run.c Diff File

playground 04d2bffd

2014-07-11 11:09

mvwieringen

Ported: N/A

Details Diff
Create an empty rados object in d_open when O_CREAT is set.
mod - src/stored/backends/rados_device.c Diff File

master 993db346

2014-07-06 13:59

Marco van Wieringen

Ported: N/A

Details Diff
Update AUTHORS.
mod - AUTHORS Diff File

bareos-13.2 bb6a87bb

2014-07-06 13:59

Marco van Wieringen

Ported: N/A

Details Diff
Update AUTHORS.
mod - AUTHORS Diff File

bareos-13.2 c591eb6e

2014-07-06 11:59

mvwieringen

Ported: N/A

Details Diff
Update AUTHORS.
mod - AUTHORS Diff File

bareos-12.4 0fd9d702

2014-07-06 11:59

mvwieringen

Ported: N/A

Details Diff
Update AUTHORS.
mod - AUTHORS Diff File

master 2d87ed5b

2014-07-06 11:59

mvwieringen

Ported: N/A

Details Diff
Update AUTHORS.
mod - AUTHORS Diff File

master 06fc51c7

2014-07-02 18:27

Philipp Storz


Committer: Marco van Wieringen

Ported: N/A

Details Diff
Set correct definition of _REPARSE_DATA_BUFFER

It seems that our definition of _REPARSE_DATA_BUFFER
was missing a Member called Flags.

See here:

http://msdn.microsoft.com/en-us/library/windows/hardware/ff552012%28v=vs.85%29.aspx
mod - src/win32/compat/include/compat.h Diff File

master 13d2925e

2014-07-02 16:27

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
Set correct definition of _REPARSE_DATA_BUFFER

It seems that our definition of _REPARSE_DATA_BUFFER
was missing a Member called Flags.

See here:

http://msdn.microsoft.com/en-us/library/windows/hardware/ff552012%28v=vs.85%29.aspx
mod - src/win32/compat/include/compat.h Diff File

master 9708f26f

2014-07-01 17:53

Marco van Wieringen

Ported: N/A

Details Diff
Fix compiler warning.
mod - src/filed/accurate_lmdb.c Diff File

master 5c39919b

2014-07-01 16:54

Marco van Wieringen

Ported: N/A

Details Diff
Enable systemd support for RHEL7 and CentOS7.
mod - platforms/packaging/bareos.spec Diff File

master a9d2cf13

2014-07-01 15:53

mvwieringen

Ported: N/A

Details Diff
Fix compiler warning.
mod - src/filed/accurate_lmdb.c Diff File
 First  Prev  1 2 3 ... 60 ... 120 ... 180 ... 240 ... 300 ... 360 ... 420 ... 480 ... 540 541 542 543 544 545 546 ... 600 ... 607 608 609  Next  Last