The fragmentation tag has no wiki summary.
0
votes
2answers
58 views
Sequence Numbers in UDP
I was asked a interesting question relating to datagrams and how they are fragmented, namely what is used to re-assemble the original datagram.
I know the ID number in every fragment will be the ...
2
votes
2answers
61 views
“Out of memory” error for standalone matlab applications - memory fragmentation
I have to deliver an application as a standalone Matlab executable to a client. The code include a series of calls to a function that internally creates several cell arrays.
My problem is that an ...
0
votes
2answers
136 views
IP Fragmentation and Reassembly
I am currently going through my networking slides and was wondering if someone could help me with the concept of fragmentation and reassembly.
I understand how it works, namely how datagrams are ...
1
vote
3answers
50 views
Storing a string that can vary a lot, from very long to very short :: Fragmentation
Ok, so every player in my game has a document in my players collection and each player has 1 string that is a serialized has of their game state. So this string can be
way long or way short and vary ...
1
vote
2answers
210 views
tcmalloc's fragmentation
Our software implement a actor model system, and we allocate/deallocate the small object very often.I am very sure the each object be destroyed without memory leak. ( I have used valgrind and tcmalloc ...
1
vote
1answer
418 views
Android : Notification not working on 2.3.6 (Samsung galaxy y)
The following code has been confirmed to work fine on devices running HONEYCOMB+. However on Samsung galaxy Y it is not producing any notifications.
String tickerText = userString + " ...
17
votes
2answers
264 views
Android : Consequences of having targetSDK > BuildTarget
I wanted to know the consequences of having targetSDK > buildTarget.
I recently observed that if I keep the buildTarget=16 and targetSDK=17 the tabs on my tablet (running 4.1.1, API Level 16) ...
3
votes
1answer
144 views
How to use both HTML5 History/State API and keep the hyperlinks with hashtags (links within documents) intact
I implemented ajaxify-html5.js into existing webpage. It uses jQuery, ScrollTo and History.js. Great stuff, works wonderful. Every link like
<a href="category?id=5">Category 5</a>
gets ...
0
votes
0answers
37 views
number of fragmentation [closed]
I have a piece of code in which:
if ((!isUDP(flowStats) && flowStats -> numFrags) ||
(flowStats -> minTTL < minimumTTL && flowStats -> maxTTL < minimumTTL)) {...}
...
3
votes
1answer
162 views
Test for memory fragmentation
So as part of a course in OS that I'm taking, I've implemented a memory allocator (just like malloc in C). The free space is stored in a linked-list.
My question in then following: How would I go ...
0
votes
0answers
78 views
File fragmentation for p2p [closed]
I have this project where i need to provide a P2P application in java. I tried to google up some documentation about fragmenting the files into chunks but no luck there. Anyone can give me some good ...
1
vote
0answers
82 views
Handling ID in a SQL Server Standard edition partitioning situation using views
Short backgroung
Hello every body. I am currently facing a situation where I need to increase performance on a very large table on SQL Server standard edition. The table is transaction heavy and ...
1
vote
1answer
178 views
Calculating memory fragmentation in Python
I have a long running process that allocates and releases objects constantly. Although objects are being freed, the RSS mem usage goes up over time.
How can I calculate how much fragmentation is ...
0
votes
2answers
96 views
Fragmentation of IPv6 using BSD sockets
I'm writing a PMTUD app for both IPv4 and v6. I am doing this on Ubuntu 12.04, but I would like to make it as OS-independent as possible, and that's where I stumbled upon a problem.
IPv6 packets get ...
-1
votes
1answer
87 views
Do any Android manufacturers release emulator images? [closed]
My Android app has a device-specific bug (fragmentation), and unfortunately it's one of those impossible-to-fathom it-can't-possibly-be-null ones.
I don't have enough money to buy hundreds of devices ...
0
votes
1answer
230 views
value of 'More Fragment' bit when IP packet is fragmented multiple times
Suppose I have two hosts, host A and host B, and host A sends a 1500 byte packet to B and there are two routers between them with a MTU of 800 bytes for the first link, and MTU of 500 bytes for the ...
0
votes
2answers
86 views
How to calculate heap fragmenation statistics using heap dumps
Does anyone knows if there is any tool out there to calculate the heap fragmentation using heap dumps?
0
votes
2answers
1k views
ViewPager Inside Fragment that is part of tabs in FragmentActivity
I'm trying to build something that I'm not sure if it's possible. I have Fragment tabs
(using FragmentActivity, TabHost and TabWidget as my fragment tabs container)
and in each of the fragments I want ...
0
votes
1answer
84 views
Trim dynamicBuffer to maintain size
I'm using ChannelBuffers.dynamicBuffer() to manage fragmentation of unknown size messages over a network using Netty. My question is, when I readBytes(...) from the buffer, do the bytes that got read ...
1
vote
0answers
72 views
oracle drop tables(~10GB) leads to disk fragmentation? [closed]
I strongly guess that disk is left in fragments after drop and is there any way to know about the disk state and any query to defragment/shrink the space?
any suggestions please
7
votes
1answer
492 views
Avoiding OutOfMemoryException during large, fast and frequent memory allocations in C#
Our application continuously allocates arrays for large quantities of data (say tens to hundreds of megabytes) which live for a shortish amount of time before being discarded.
Done naively this can ...
0
votes
0answers
335 views
Insert Into Using OpenQuery Causes Massive Fragmentation
I use the following code to import a table from an Oracle DB to SQL Server every day:
TRUNCATE TABLE mytable
INSERT INTO mytable (firstname, lastname, city, state)
SELECT * FROM OPENQUERY ...
1
vote
0answers
395 views
Linux Kernel memory management: reducing CONFIG_DMA_ZONE_SIZE did not return memory to ZONE_NORMAL
I'm working on a memory constrained embedded ARM Linux system (2.6.35). The platform is so memory constrained that userspace allocation requests for ZONE_NORMAL were frequently being satisfied from ...
1
vote
1answer
301 views
IP fragmentation and TCP ACK
I have a question on how TCP_ACK works when the original packet are fragmented.
For example, original packet size is 1,500*N bytes and MTU is 1,500. Then, the packet will be frgmented into ...
0
votes
1answer
32 views
File fragmentation when data changes
If i add some letters to middle of file is that operation make file fragmentation?
I just want to store data to file and sometimes update them. So...when i made many changes is it may be bad for ...
0
votes
2answers
672 views
How to use DPI scaling factor (float) to set margins (int)
My Android app looks great at 480x800 pixels resolution but it breaks at LDPI screen with 240x400 pixels. I know I can get scaling factor of screen in activity using ...
1
vote
0answers
212 views
Galaxy S3: Broadcastreceiver does not receive anything. Works with any other phone
I have a plugin that is has to receive a Broadcast. The declaration in the manifest is as followed:
<receiver
android:name=".Receiver"
...
0
votes
0answers
165 views
tcprewrite with fragroute issue
I have a captured pcap. Now I want to use a fragmented version of that pcap. I figured I can use the fragroute option with tcprewrite to create a fragmented version of the said pcap as follows:
...
1
vote
1answer
461 views
TSQL Index fragmentation query returning confusing data
I have a very simple, standard query to show me the fragmentation of indexes within a database, as follows:
SELECT DB_NAME(DB_ID()) AS DatabaseName,
OBJECT_NAME(ddips.[object_id]) AS TableName,
...
0
votes
2answers
186 views
Deploying multiple APK to market
I've got an Adroid application that works on devices with every density and screen sizes,
to achieve this I placed multiple resources in the "res" folder, as Android allows you to do.
Fact is that ...
0
votes
0answers
18 views
How to install fragmented project in Eclipse
I have created a fragmented Plugin project in Eclipse for HTML Editor.Now i want to install it as a plugin in my other Eclipse but it gives me conflict with existing dependency.
Is there any specific ...
0
votes
1answer
193 views
Fragmenting a table for distribution ORACLE SQL
Is there any subset of sql that deals specifically with horizontally fragmenting a table for distribution?
I have to fragment a stock table to be distributed between stores. Im not looking for a ...
7
votes
3answers
129 views
What type of Android apps are the hardest to support (fragmentation worry) [closed]
Saw an interesting and kinda scary blog post the other day. It was a mobile developer's collection of Android devices they test on. It was around 400. --> ...
2
votes
1answer
198 views
How can I avoid file fragmentation while writing hundreds of multi-megabyte files?
My question is similar to How to avoid hard disc fragmentation?, but I will be generating several hundred files per day that can range in size from 2 MB to 100+ MB (that questioner implied his files ...
0
votes
1answer
120 views
Will allocations with short lifetimes cause heap fragmentation?
Suppose I have the following:
std::string TestFragmentation()
{
std::vector<char> buffer(500);
SomeCApiFunction( &buffer[0], buffer.size() ); // Sets buffer to null-terminated ...
0
votes
1answer
250 views
VideoView Documentation (Issue only in 2.2/2.1)
I've been working on a VideoView as part of an application and It worked on all our previous test units. We recently received a unit for Android 2.2 where it is inconsistent and sometimes fails. ...
2
votes
1answer
201 views
Difference between skbuff frags and frag_list
The sk_buff has two places where it can store the next fragmentation data:
skb_shinfo(head)->frag_list
skb_shinfo(head)->frags[]
May someone please explain the differences between these two ...
2
votes
1answer
336 views
Android Heap Fragmentation Strategy?
I have an OpenGL Android app that uses a considerable amount of memory to set up a complex scene and this clearly causes significant heap fragmentation. Even though there are no memory leaks it is ...
1
vote
1answer
257 views
Android Activity causing Service crash due to heap fragmentation
I have an Android app (activity) which also has a corresponding service. The service is started by the activity and is supposed to run continuously even when the activity is stopped. When the activity ...
0
votes
1answer
1k views
Android null pointer exception on some phones, not others, same API level
I have an android app that is getting a null pointer exception on some phones (all 2.3.x) but not on my phone (also 2.3.x) or on any of the simulators. The particular exception doesn't seem give any ...
3
votes
3answers
807 views
25k Inserts Daily, 99% Fragmentation on Clustered GUID Index
I have a table that has a primary key as a clustered GUID field; I'm generating GUIDs using NEWSEQUENTIALID() instead of NEWID. Unfortunately, because this table sees ~25k-100k inserts per day, ...
2
votes
1answer
322 views
What is the most high-performance Linux filesystem for storing a lot of small files (HDD, not SSD)? [closed]
I have a directory tree that contains many small files, and a small number of larger files. The average size of a file is about 1 kilobyte. There are 210158 files and directories in the tree (this ...
3
votes
0answers
430 views
Show different layouts in fragmentation
I have a problem that I want to load different layouts every time in a fragment when a list Item is clicked from different fragment. Means I have two fragments on a screen, first one is ListView and ...
1
vote
1answer
291 views
How to handle the fact that Dialog background in Theme.Light are black on pre-ICS sdk and white on ICS
In my application, I use some dialogs to display information.
The theme of my application is Theme.Light since 2 years, and these dialogs have always been black since the beginning.
Now with ICS, it ...
4
votes
1answer
596 views
Measure (Android) heap fragmentation?
We have an app with lots of bitmaps in memory. It keeps failing with
java.lang.OutOfMemoryError: bitmap size exceeds VM budget
errors. It's possible that we are genuinely using too much memory; ...
0
votes
0answers
101 views
Does iPhone optimize calls to c++ new?
When you use c++ new for an iPhone app does it optimize the call at all to minimize fragmentation(without implementing any manual memory management)? For example I've heard that iPhone supports a ...
1
vote
1answer
227 views
TCP messages getting coalesced
I have a Java application that is writing to the network. It is writing messages in the region of 764b, +/- 5b. A pcap shows that the stream is getting IP fragmented and we can't explain this.
Linux ...
8
votes
5answers
744 views
Dealing with fragmentation in a memory pool?
Suppose I have a memory pool object with a constructor that takes a pointer to a large chunk of memory ptr and size N. If I do many random allocations and deallocations of various sizes I can get the ...
1
vote
1answer
2k views
SQL Server: 12% index scan density and 50% fragmentation. How bad is “bad”?
How much fragmentation is bad? How low of scan density is too low?
How low does scan density is bad?
i have a table with the following index density and fragmentation levels:
Name ...
0
votes
0answers
187 views
Android Stackoverflow Error on Sidekick 4G
one my layouts is apparently throwing stackoverflow error as given below
java.lang.StackOverflowError
at java.lang.Thread.currentThread(Thread.java:588)
at ...