[developer] Re: [openzfs/openzfs] 8168 race in zfs_create(): null pointer dereference (#373)

2017-05-23 Thread LOLi
When this change was tested on Linux, zfs_create_013_pos did in fact mark those as UNSUPPORTED (http://build.zfsonlinux.org/builders/Amazon%202015.09%20x86_64%20Release%20%28TEST%29/builds/2293/steps/shell_9/logs/log) ``` Test:

[developer] Re: [openzfs/openzfs] 8067 zdb should be able to dump literal embedded block pointer (#346)

2017-05-23 Thread Prakash Surya
Closed #346 via 3df37068900c95bc4531efb03f141937c887ce80. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/openzfs/openzfs/pull/346#event-1094755064 --

[developer] Re: [openzfs/openzfs] 7578 Fix/improve some aspects of ZIL writing. (#219)

2017-05-23 Thread Prakash Surya
thank you for your patience, @amotin ! -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/openzfs/openzfs/pull/219#issuecomment-303589928 -- openzfs-developer Archives:

[developer] Re: [openzfs/openzfs] 7578 Fix/improve some aspects of ZIL writing. (#219)

2017-05-23 Thread Prakash Surya
landed via https://github.com/openzfs/openzfs/commit/aeb13accf5ba027cc5d351fdd5f4e9a6fa905431 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/openzfs/openzfs/pull/219#issuecomment-303589685

[developer] Re: [openzfs/openzfs] 7578 Fix/improve some aspects of ZIL writing. (#219)

2017-05-23 Thread Prakash Surya
Closed #219. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/openzfs/openzfs/pull/219#event-1094749428 -- openzfs-developer Archives:

[developer] Re: [openzfs/openzfs] 8081 Compiler warnings in zdb (#354)

2017-05-23 Thread Alan Somers
@asomers pushed 1 commit. 3c92475 Respond to mahrens's comments -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/openzfs/openzfs/pull/354/files/297bc14577bd4462f20b2b640b8377c47384c9fb..3c924751732b06f6e728f5997489c5cbee6d71a2

[developer] Re: [openzfs/openzfs] 8081 Compiler warnings in zdb (#354)

2017-05-23 Thread Igor K
ikozhukhov commented on this pull request. > @@ -,7 +1116,7 @@ dump_history(spa_t *spa) umem_free(buf, SPA_MAXBLOCKSIZE); (void) printf("\nHistory:\n"); - for (int i = 0; i < num; i++) { + for (unsigned i = 0; i < num; i++) { i'd like to see fixed compiler

[developer] Re: [openzfs/openzfs] 8081 Compiler warnings in zdb (#354)

2017-05-23 Thread Alan Somers
asomers commented on this pull request. > extern uint8_t dump_opt[256]; static char prefix[4] = "\t\t\t"; static void -print_log_bp(const blkptr_t *bp, const char *prefix) +print_log_bp(const blkptr_t *bp, const char *_prefix) ok, I'll change it. -- You are receiving this because you

[developer] Re: [openzfs/openzfs] 8081 Compiler warnings in zdb (#354)

2017-05-23 Thread Alan Somers
asomers commented on this pull request. > @@ -,7 +1116,7 @@ dump_history(spa_t *spa) umem_free(buf, SPA_MAXBLOCKSIZE); (void) printf("\nHistory:\n"); - for (int i = 0; i < num; i++) { + for (unsigned i = 0; i < num; i++) { By default FreeBSD compiles with