Displaying 7 results from an estimated 7 matches for "attr_siz".
Did you mean:
attr_size
2017 Aug 07
4
FreeBSD samba server returns nt_status_acces_denied when DosStream xattr larger than 64KB
>
> If you feel like it, you could write a VFS module that adds better support
> for
> this on FreeBSD, but what is the use case?
>
I've noticed in online forums that occasionally home NAS users will for
various reasons have streams_xattr enabled and receive 'access denied'
errors when trying to write files with large alternate datastreams. These
are typically on media
2011 Jun 24
10
[PATCH 0/9] remove i_alloc_sem V2
i_alloc_sem has always been a bit of an odd "lock". It''s the only remaining
rw_semaphore that can be released by a different thread than the one that
locked it, and it''s use case in the core direct I/O code is more like a
counter given that the writers already have external serialization.
This series removes it in favour of a simpler counter scheme, thus getting
rid
2001 Mar 28
1
Ext3 and LFS - possible? fatal?
Has anyone tried LFS (ie >2G files support) and Ext3 together?
Are there good reasons why this should/should not work?
I see the RH enterprise kernel patch set specifically does not attempt
both lfs and ext3, but the lfs patches themselves touch some reasonably
localised parts of ext2, so I would hope (without having dived in there
to test), that the ext3 changes would mirror that
2001 Dec 07
1
chown/quota bug in ext3
Hi,
there appears to be a bug w.r.t. chown and quotas in ext3.
In particular, if you "chown" a file on a filesystem with userquotas
enabled, the quota charge in not transfered.
ditto "chgrp" and group quotas.
This happens because i_op->setattr has been redefined for files, and
ext3_setattr doesn't do the DQUOT_TRANSFER like it should.
I have fixed it by adding a
2007 Oct 13
0
5 commits - libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_xml.c test/trace
...eld_movie.c
index 2827961..21e9a79 100644
--- a/libswfdec/swfdec_text_field_movie.c
+++ b/libswfdec/swfdec_text_field_movie.c
@@ -108,7 +108,7 @@ swfdec_text_field_movie_generate_paragra
GSList *iter;
PangoAttribute *attr_bold, *attr_color, *attr_font, *attr_italic,
*attr_letter_spacing, *attr_size, *attr_underline;
- // TODO: kerning
+ // TODO: kerning, display
g_assert (SWFDEC_IS_TEXT_FIELD_MOVIE (text));
g_assert (paragraph != NULL);
@@ -147,8 +147,7 @@ swfdec_text_field_movie_generate_paragra
SWFDEC_COLOR_B (format->color) * 255);
attr_color->start_index = 0;...
2007 Oct 29
0
20 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h
...text_paragraph_add_attribute (paragraph, attr_italic);
attr_italic = NULL;
- attr_letter_spacing->end_index = end_index - start_index;
+ attr_letter_spacing->end_index = length;
swfdec_text_paragraph_add_attribute (paragraph, attr_letter_spacing);
attr_letter_spacing = NULL;
- attr_size->end_index = end_index - start_index;
+ attr_size->end_index = length;
swfdec_text_paragraph_add_attribute (paragraph, attr_size);
attr_size = NULL;
- attr_underline->end_index = end_index - start_index;
+ attr_underline->end_index = length;
swfdec_text_paragraph_add_attr...
2001 Mar 13
5
is this null block OK?
...gth < 0)
return -EINVAL;
down(&inode->i_sem);
if (size_check != inode->i_size) {
up(&inode->i_sem);
EXIT;
return -EALREADY;
}
newattrs.ia_size = length;
newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
op = filter_c2csops(fset->fset_cache->cache_filter);
error = op->notify_change(dentry, &newattrs);
if (!error) {
struct inode_operations *iop;
/* truncate virtual mappings of this file */
iop = filt...